2022-05-04 16:17:20 +08:00
|
|
|
/** User-defined style. **/
|
2022-05-06 22:42:09 +08:00
|
|
|
{{- $P := .Site.Params -}}
|
2022-05-04 16:17:20 +08:00
|
|
|
.sidebar {
|
|
|
|
visibility: inherit;
|
|
|
|
}
|
|
|
|
|
|
|
|
.site-author-image {
|
2022-05-06 22:42:09 +08:00
|
|
|
{{ if $P.avatar.rounded }}
|
2022-05-05 13:58:46 +08:00
|
|
|
border-radius:50%;
|
2022-05-06 22:42:09 +08:00
|
|
|
{{ end }}
|
|
|
|
{{ if $P.avatar.rotated }}
|
|
|
|
transition: transform 1s ease-out;
|
|
|
|
{{ end }}
|
2022-05-04 16:17:20 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
.back-to-top {
|
|
|
|
bottom: 30px;
|
2022-05-06 22:03:44 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
.rss-link {
|
|
|
|
border-top: 1px dotted #ccc;
|
|
|
|
border-bottom: 1px dotted #ccc;
|
|
|
|
text-align: center;
|
|
|
|
margin: 10px 0 0 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
.rss-link a {
|
|
|
|
display: block;
|
|
|
|
color: #fc6423;
|
|
|
|
border-bottom: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
.rss-link a:hover {
|
|
|
|
font-weight: bold;
|
2022-05-04 16:17:20 +08:00
|
|
|
}
|