portfoligor/assets/scss/_header.scss

46 lines
579 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;
.avatar {
height: 3rem;
margin: auto 0;
border-radius: 35%;
}
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;
gap: .5rem;
margin-bottom: .5rem;
}
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;
}
}