Import theme

This commit is contained in:
DuN0z 2025-10-09 10:23:36 +02:00
parent 51769fa6be
commit c59ffbfeee
127 changed files with 13611 additions and 1 deletions

View file

@ -0,0 +1,48 @@
@use 'modules/color_theme' as color;
.archive {
margin: 30px;
&__heading {
font-size: 2.4rem;
font-weight: 600;
line-height: 2.2em;
@include color.themed() {
color: color.t('primary');
}
}
&__list {
padding: 0;
&-item {
display: flex;
justify-content: space-between;
padding-bottom: 5px;
list-style-type: none;
}
&-date {
text-align: right;
@include color.themed() {
color: color.t('primary-light');
}
}
&-title {
display: inline-block;
flex: 0.96;
@include color.themed() {
color: color.t('primary');
}
&:hover {
@include color.themed() {
color: color.t('info');
}
}
}
}
}