Import theme
This commit is contained in:
parent
51769fa6be
commit
c59ffbfeee
127 changed files with 13611 additions and 1 deletions
48
assets/scss/partials/components/_archive.scss
Normal file
48
assets/scss/partials/components/_archive.scss
Normal 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');
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue