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.
29 lines
428 B
SCSS
29 lines
428 B
SCSS
$header-width: 1400px;
|
|
|
|
$main-width: 720px;
|
|
|
|
body {
|
|
min-height: 100vh;
|
|
margin: 0;
|
|
background: url(/body-bg.svg) top center no-repeat #d22d40;
|
|
background-size:100% auto;
|
|
color: #fff;
|
|
font-size: 1.6em;
|
|
}
|
|
|
|
header {
|
|
display: flex;
|
|
justify-content: space-between;
|
|
align-items: center;
|
|
max-width: $header-width;
|
|
margin: 0 auto;
|
|
padding: 2em 1em;
|
|
|
|
img { width: 250px; }
|
|
|
|
#menu {
|
|
width: 250px;
|
|
text-align: right;
|
|
}
|
|
}
|