portfoligor/assets/scss/_header.scss

38 lines
458 B
SCSS
Raw Normal View History

///////////////////
// //
// HEADER //
// //
///////////////////
.main-header {
2021-10-29 22:34:24 +02:00
display: flex;
flex-direction: column;
margin: 1.25rem 0;
2021-10-29 22:34:24 +02:00
h1 {
margin: 0;
}
2021-10-29 22:34:24 +02:00
article {
flex-grow: 1;
}
2021-10-29 22:34:24 +02:00
.title {
display: flex;
justify-content: center;
}
2021-10-29 22:34:24 +02:00
nav {
2021-10-29 22:34:24 +02:00
ul {
display: flex;
justify-content: space-evenly;
margin: 0;
padding: 0;
}
2021-10-29 22:34:24 +02:00
@include inline-list;
}
}