30 lines
379 B
SCSS
30 lines
379 B
SCSS
body {
|
|
font-family: -apple-system, BlinkMacSystemFont, Helvetica, Arial, sans-serif;
|
|
}
|
|
|
|
.container {
|
|
max-width: 1280px;
|
|
margin: 0 auto;
|
|
}
|
|
|
|
header nav {
|
|
display: flex;
|
|
flex-direction: row;
|
|
justify-content: space-between;
|
|
|
|
ul {
|
|
padding-left: 0;
|
|
|
|
li {
|
|
list-style: none;
|
|
display: inline;
|
|
margin-right: 15px;
|
|
|
|
&:last-child {
|
|
margin-right: 0;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|