2022-05-21 17:47:26 +08:00
|
|
|
.site-author-image {
|
|
|
|
border: $site-author-image-border-width solid $site-author-image-border-color;
|
2022-10-29 22:37:41 +08:00
|
|
|
width: $site-author-image-width;
|
|
|
|
height: $site-author-image-width;
|
2022-05-21 17:47:26 +08:00
|
|
|
padding: 2px;
|
|
|
|
|
2022-05-21 20:34:09 +08:00
|
|
|
@if $avatar_rounded {
|
2022-05-21 17:47:26 +08:00
|
|
|
border-radius: 50%;
|
|
|
|
}
|
|
|
|
|
2022-05-21 20:34:09 +08:00
|
|
|
@if $avatar_rotated {
|
2022-05-21 17:47:26 +08:00
|
|
|
transition: transform 1s ease-out;
|
|
|
|
|
|
|
|
&:hover {
|
|
|
|
transform: rotateZ(360deg);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.site-author-name {
|
|
|
|
color: $site-author-name-color;
|
|
|
|
font-weight: $site-author-name-weight;
|
|
|
|
margin: $site-author-name-margin;
|
|
|
|
}
|
|
|
|
|
|
|
|
.site-description {
|
|
|
|
color: $site-description-color;
|
|
|
|
font-size: $site-description-font-size;
|
|
|
|
margin-top: $site-description-margin-top;
|
|
|
|
}
|