You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
60 lines
833 B
SCSS
60 lines
833 B
SCSS
2 years ago
|
*, *:before, *:after {
|
||
|
box-sizing: border-box;
|
||
|
}
|
||
|
|
||
|
body {
|
||
|
max-width: 60em;
|
||
|
width: 100%;
|
||
|
margin: 0 auto;
|
||
|
background: #131516;
|
||
|
color: #e8e6e3;
|
||
|
}
|
||
|
|
||
|
p {
|
||
|
line-height: 1.5;
|
||
|
}
|
||
|
|
||
|
body>header {
|
||
|
.img {
|
||
|
display: block;
|
||
|
width: 100%;
|
||
|
height: 10rem;
|
||
|
background:
|
||
|
url(/logo.svg),
|
||
|
linear-gradient(0deg, rgba(0,0,0,0.6), rgba(0,0,0,0.6)),
|
||
|
url(/header.jpg);
|
||
|
background-size: auto 60%, cover, cover;
|
||
|
background-position: 3em, center, center;
|
||
|
background-repeat: no-repeat;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
body>nav {
|
||
|
width: 100%;
|
||
|
height: 3rem;
|
||
|
background: #1d1f21;
|
||
|
|
||
|
display: flex;
|
||
|
justify-content: center;
|
||
|
align-items: stretch;
|
||
|
|
||
|
a {
|
||
|
display: flex;
|
||
|
align-items: center;
|
||
|
padding: 0 1.5em;
|
||
|
height: 100%;
|
||
|
|
||
|
color: #fc0;
|
||
|
text-decoration: none;
|
||
|
|
||
|
&:hover {
|
||
|
background: #131516;
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
|
||
|
body>main {
|
||
|
margin-top: 3em;
|
||
|
padding: 0 1em;
|
||
|
}
|