update
This commit is contained in:
80
v1/css/main.css
Normal file
80
v1/css/main.css
Normal file
@@ -0,0 +1,80 @@
|
||||
:root{
|
||||
--fontFam: 'Poppins', sans-serif;
|
||||
}
|
||||
|
||||
*{
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
box-sizing: border-box;
|
||||
font-family: var(--fontFam);
|
||||
}
|
||||
|
||||
body{
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
align-items: center;
|
||||
|
||||
}
|
||||
|
||||
.page{
|
||||
width: 80%;
|
||||
margin-top: 3rem;
|
||||
}
|
||||
|
||||
.page > *{
|
||||
margin: 2rem;
|
||||
}
|
||||
|
||||
.projects > *{
|
||||
margin-top: 2rem;
|
||||
}
|
||||
|
||||
.project > *{
|
||||
margin: 1rem;
|
||||
}
|
||||
|
||||
.header{
|
||||
position: fixed;
|
||||
top: 0;
|
||||
left: 0;
|
||||
display: flex;
|
||||
background-color: white;
|
||||
z-index: 10;
|
||||
justify-content: space-between;
|
||||
padding: 1rem;
|
||||
width: 100%;
|
||||
box-shadow: rgb(0 0 0 / 5%) 0px 6px 24px 0px, rgb(0 0 0 / 8%) 0px 0px 0px 1px;}
|
||||
.header a{
|
||||
margin: 5px;
|
||||
text-decoration: none;
|
||||
color: black;
|
||||
font-size: 15px;
|
||||
}
|
||||
|
||||
header h3{
|
||||
position: relative;
|
||||
z-index: 4;
|
||||
color: blue;
|
||||
font-size: 1.2rem;
|
||||
filter: drop-shadow(0 0 0.25rem rgba(0,0,0,0.2));
|
||||
}
|
||||
|
||||
header h3:after{
|
||||
content: '</label>';
|
||||
position: absolute;
|
||||
font-size: 1.9rem;
|
||||
color: rgba(128, 128, 128, 0.219);
|
||||
bottom: -15px;
|
||||
right: -70px;
|
||||
z-index: 1;
|
||||
}
|
||||
|
||||
header h3::before{
|
||||
content: '#BEZ tagů';
|
||||
position: absolute;
|
||||
font-size: 1.5rem;
|
||||
color: rgba(128, 128, 128, 0.219);
|
||||
bottom: 5px;
|
||||
z-index: 1;
|
||||
left: -80px;
|
||||
}
|
Reference in New Issue
Block a user