24 lines
483 B
SCSS
24 lines
483 B
SCSS
@import 'variables';
|
|
@import 'mixins';
|
|
|
|
.sidebar-data {
|
|
border-radius: 3px;
|
|
font-weight: bold;
|
|
margin-bottom: 32px;
|
|
font-family: var(--ff-monospace);
|
|
padding: 16px;
|
|
@include themeable(color, theme-secondary-color, $dark-medium-gray);
|
|
color: var(--card-color-tertiary);
|
|
hr {
|
|
opacity: 0.3;
|
|
margin: 25px 0px 15px;
|
|
width: 200px;
|
|
}
|
|
.olderposts-header {
|
|
margin-bottom: 5px;
|
|
}
|
|
.olderposts-pagenumber {
|
|
padding: 4px;
|
|
margin-right: -4px;
|
|
}
|
|
}
|