hugo-theme-zzo/assets/sass/components/_whoami.scss

33 lines
609 B
SCSS
Raw Normal View History

.whoami {
padding: 1rem;
margin: 4rem 0;
border-radius: 0.25rem;
2019-11-17 16:44:04 +00:00
@include flexbox();
@include themify($themes) {
border-top: 2px dashed themed('whoami-border-color');
border-bottom: 2px dashed themed('whoami-border-color');
}
&__image {
width: 100%;
height: 100%;
2019-11-17 16:44:04 +00:00
border-radius: 0.5rem;
object-fit: contain;
2019-11-17 16:44:04 +00:00
&-wrapper {
margin-right: 1rem;
max-width: 150px;
}
}
&__title {
font-size: 1.5rem;
font-weight: 700;
margin-bottom: 0.5rem;
2019-11-17 16:44:04 +00:00
padding-bottom: 0.5rem;
}
&__desc {
font-size: 1rem;
}
}