38 lines
458 B
SCSS
38 lines
458 B
SCSS
///////////////////
|
|
// //
|
|
// HEADER //
|
|
// //
|
|
///////////////////
|
|
|
|
.main-header {
|
|
display: flex;
|
|
flex-direction: column;
|
|
margin: 1.25rem 0;
|
|
|
|
h1 {
|
|
margin: 0;
|
|
}
|
|
|
|
article {
|
|
flex-grow: 1;
|
|
}
|
|
|
|
.title {
|
|
display: flex;
|
|
justify-content: center;
|
|
}
|
|
|
|
nav {
|
|
|
|
ul {
|
|
display: flex;
|
|
justify-content: space-evenly;
|
|
margin: 0;
|
|
padding: 0;
|
|
}
|
|
|
|
@include inline-list;
|
|
|
|
}
|
|
}
|