mirror of
https://github.com/13hannes11/hugo-coder-timeline.git
synced 2024-09-04 00:50:58 +02:00
* Making easy to customize listing * adding styles to listing * removing unintended changes * correcting declaration * including files for release * changing url to be relative so it can work on localhost * Including suggestions
37 lines
544 B
SCSS
37 lines
544 B
SCSS
body.inverted {
|
|
|
|
.content {
|
|
|
|
.list {
|
|
ul {
|
|
li {
|
|
.title {
|
|
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;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
}
|