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

31 lines
490 B
SCSS
Raw Normal View History

2019-11-04 13:09:44 +00:00
.header {
@include flexbox();
@include align-items(center);
@include justify-content(center);
2019-11-12 00:05:49 +00:00
@include flex-direction(column);
2019-11-04 13:09:44 +00:00
.title {
font-family: $header_title_font;
2019-11-04 13:09:44 +00:00
font-weight: 900;
}
&__whoami {
@include flexbox();
2019-11-11 14:44:13 +00:00
@include justify-content(center);
@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
}