Import theme
This commit is contained in:
parent
51769fa6be
commit
c59ffbfeee
127 changed files with 13611 additions and 1 deletions
36
assets/scss/partials/_hugo.scss
Normal file
36
assets/scss/partials/_hugo.scss
Normal file
|
|
@ -0,0 +1,36 @@
|
|||
@use 'modules/color_theme' as color;
|
||||
@use 'modules/config' as conf;
|
||||
|
||||
a {
|
||||
text-decoration: none;
|
||||
|
||||
@include color.themed() {
|
||||
color: color.t('primary');
|
||||
}
|
||||
|
||||
&:hover {
|
||||
@include color.themed() {
|
||||
color: color.t('info');
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
blockquote {
|
||||
padding: 0 1em;
|
||||
|
||||
@include color.themed() {
|
||||
color: color.t('primary');
|
||||
|
||||
@include conf.ltr {
|
||||
border-left: color.t('border');
|
||||
}
|
||||
|
||||
@include conf.rtl {
|
||||
border-right: color.t('border');
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
p {
|
||||
line-height: 1.9em;
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue