2019-11-15 08:37:32 +00:00
|
|
|
.bio {
|
|
|
|
@include flexbox();
|
|
|
|
@include justify-content(center);
|
2019-11-17 11:01:09 +00:00
|
|
|
@include align-items(flex-start);
|
2019-11-15 08:37:32 +00:00
|
|
|
@include flex-direction(column);
|
2019-11-21 09:25:28 +00:00
|
|
|
@include animation('slide-in-down-2 .5s .2s 1 ease both');
|
|
|
|
|
2019-11-15 08:37:32 +00:00
|
|
|
width: 100%;
|
|
|
|
font-family: 'Montserrat', sans-serif;
|
|
|
|
|
|
|
|
&__photo {
|
2019-11-17 11:01:09 +00:00
|
|
|
border-radius: 0.25rem;
|
|
|
|
@include box-shadow(0, 8px, 6px, -6px, black);
|
|
|
|
|
|
|
|
&-wrapper {
|
2019-11-15 08:37:32 +00:00
|
|
|
width: 100%;
|
2019-11-17 11:01:09 +00:00
|
|
|
height: 100%;
|
|
|
|
border-radius: 0.25rem;
|
|
|
|
margin: 1rem auto;
|
|
|
|
@include flexbox();
|
|
|
|
@include align-items(center);
|
|
|
|
@include justify-content(center);
|
|
|
|
@include themify($themes) {
|
|
|
|
background-color: themed('avatar-background-color');
|
2019-11-15 08:37:32 +00:00
|
|
|
}
|
2019-11-17 11:01:09 +00:00
|
|
|
}
|
2019-11-15 08:37:32 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
&__name {
|
|
|
|
font-weight: 700;
|
|
|
|
letter-spacing: 1px;
|
|
|
|
font-family: inherit;
|
2019-11-17 11:01:09 +00:00
|
|
|
font-size: 26px;
|
2019-11-15 08:37:32 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
&__desc {
|
|
|
|
margin: 0.5rem 0;
|
2019-11-17 11:01:09 +00:00
|
|
|
font-size: 14px;
|
2019-11-15 08:37:32 +00:00
|
|
|
}
|
|
|
|
|
2019-11-17 11:01:09 +00:00
|
|
|
&__info {
|
|
|
|
font-size: 14px;
|
|
|
|
@include flexbox();
|
|
|
|
@include align-items(center);
|
|
|
|
@include justify-content(center);
|
|
|
|
|
|
|
|
&--icon {
|
|
|
|
margin-right: 0.25rem;
|
|
|
|
@include themify($themes) {
|
|
|
|
color: themed('social-icon-color');
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-11-15 08:37:32 +00:00
|
|
|
a {
|
2019-11-17 11:01:09 +00:00
|
|
|
padding-right: 1rem;
|
|
|
|
@include truncate(calcSideWidth());
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
&__social {
|
|
|
|
width: 100%;
|
|
|
|
margin-top: 0.5rem;
|
|
|
|
|
|
|
|
@include flexbox();
|
|
|
|
a {
|
2019-11-15 08:37:32 +00:00
|
|
|
text-decoration: none !important;
|
2019-11-17 11:01:09 +00:00
|
|
|
width: 100%;
|
|
|
|
padding: 0.5rem;
|
|
|
|
border-radius: 0.125rem;
|
|
|
|
|
|
|
|
@include flexbox();
|
|
|
|
@include align-items(center);
|
|
|
|
@include justify-content(space-around);
|
2019-11-15 08:37:32 +00:00
|
|
|
@include themify($themes) {
|
|
|
|
color: themed('social-icon-color');
|
|
|
|
@include on-event {
|
|
|
|
color: themed('social-icon-hover-color');
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2019-11-17 11:01:09 +00:00
|
|
|
|
|
|
|
&__hr {
|
|
|
|
margin: 1rem 0;
|
|
|
|
}
|
2019-11-20 06:55:05 +00:00
|
|
|
|
|
|
|
&-hr {
|
|
|
|
border-radius: 0.5rem;
|
|
|
|
}
|
2019-11-15 08:37:32 +00:00
|
|
|
}
|