hugo-theme-zzo/assets/sass/layout/_header.scss

33 lines
507 B
SCSS
Raw Normal View History

2019-11-04 13:09:44 +00:00
.header {
padding: 1rem;
2019-11-04 13:09:44 +00:00
@include flexbox();
@include align-items(center);
@include justify-content(center);
@include flex-direction(column);
.title {
font-family: $header_title_font;
2019-11-04 13:09:44 +00:00
font-weight: 900;
}
&__whoami {
@include flexbox();
@include flex-direction(column);
@include align-items(center);
width: 100%;
&--image {
max-width: 64px;
max-height: 64px;
}
&--name {
}
&--desc {
margin: 0.25rem 0;
}
}
2019-11-04 13:09:44 +00:00
}