mirror of
https://github.com/13hannes11/hugo-coder-timeline.git
synced 2024-09-04 00:50:58 +02:00
* add inverted variables option * create inverted styles * add missed styles * add myself as contributor
37 lines
539 B
SCSS
37 lines
539 B
SCSS
body.inverted {
|
|
|
|
.content {
|
|
|
|
.list {
|
|
ul {
|
|
li {
|
|
a {
|
|
color: $fg-color-inverted;
|
|
&:hover,
|
|
&:focus {
|
|
color: $link-color-inverted
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
.centered {
|
|
.about {
|
|
ul {
|
|
li {
|
|
a {
|
|
color: $fg-color-inverted;
|
|
&:hover,
|
|
&:focus {
|
|
color: $link-color-inverted;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
}
|