68 lines
1.3 KiB
SCSS
68 lines
1.3 KiB
SCSS
.whoami {
|
|
padding: 0 1rem;
|
|
margin: 1rem 0;
|
|
border-radius: 0.25rem;
|
|
width: 100%;
|
|
|
|
@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%;
|
|
object-fit: cover;
|
|
border-radius: 0.25rem;
|
|
|
|
@include themify($themes) {
|
|
border-bottom: 4px solid themed('content-pre-main-color');
|
|
}
|
|
|
|
&-wrapper {
|
|
min-width: 150px;
|
|
max-width: 200px;
|
|
height: auto;
|
|
margin-right: 1rem;
|
|
|
|
@include flexbox();
|
|
@include flex-direction(column);
|
|
}
|
|
}
|
|
|
|
&__title {
|
|
font-size: 1.5rem;
|
|
font-weight: 700;
|
|
margin-bottom: 0.5rem;
|
|
padding-bottom: 0.5rem;
|
|
|
|
@include themify($themes) {
|
|
text-decoration: underline double themed('content-pre-main-color');
|
|
}
|
|
}
|
|
|
|
&__desc {
|
|
font-size: 1rem;
|
|
padding-left: 0.25rem;
|
|
}
|
|
|
|
&__gutter {
|
|
height: 2.5rem;
|
|
}
|
|
|
|
&__social {
|
|
margin-top: 0.5rem;
|
|
a {
|
|
@include themify($themes) {
|
|
text-decoration: none;
|
|
color: themed('social-icon-color');
|
|
&:hover {
|
|
color: themed('social-icon-hover-color');
|
|
transition: color 0.2s ease;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
} |