hugo-theme-zzo/assets/sass/pages/_list.scss

40 lines
564 B
SCSS
Raw Normal View History

2019-11-04 13:09:44 +00:00
.list {
&__main {
}
&__sidebar {
&.l {
margin-left: 1rem;
}
&.r {
margin-right: 1rem;
}
&[data-dir="rtl"] {
margin-left: 1rem;
margin-right: 0;
}
}
2019-11-04 13:09:44 +00:00
&__header {
display: flex;
align-items: center;
justify-content: center;
2020-01-21 02:07:47 +00:00
margin: 1.25rem 0;
font-family: $title-font;
2019-11-04 13:09:44 +00:00
&--title {
@include themify($themes) {
color: themed('list-header-title-color');
}
}
&--desc {
font-weight: italic;
padding: 1rem;
2020-01-24 12:24:17 +00:00
line-height: 1.7rem;
2019-11-04 13:09:44 +00:00
}
}
}