mirror of
https://github.com/13hannes11/hugo-coder-timeline.git
synced 2024-09-04 00:50:58 +02:00
Add inverted variables option (#110)
* add inverted variables option * create inverted styles * add missed styles * add myself as contributor
This commit is contained in:
committed by
Luiz F. A. de Prá
parent
55c424f4d1
commit
720f7518a6
39
assets/scss/_base_inverted.scss
Normal file
39
assets/scss/_base_inverted.scss
Normal file
@@ -0,0 +1,39 @@
|
||||
body.inverted {
|
||||
|
||||
color: $fg-color-inverted;
|
||||
background-color: $bg-color-inverted;
|
||||
|
||||
a {
|
||||
color: $link-color-inverted;
|
||||
}
|
||||
|
||||
h1,
|
||||
h2,
|
||||
h3,
|
||||
h4,
|
||||
h5,
|
||||
h6 {
|
||||
color: $alt-fg-color-inverted;
|
||||
}
|
||||
|
||||
code {
|
||||
background-color: $alt-bg-color-inverted;
|
||||
color: $fg-color-inverted;
|
||||
}
|
||||
|
||||
pre {
|
||||
code {
|
||||
background-color: inherit;
|
||||
color: inherit;
|
||||
}
|
||||
}
|
||||
|
||||
blockquote {
|
||||
border-left: 2px solid $alt-bg-color-inverted;
|
||||
}
|
||||
|
||||
table td, table th {
|
||||
border: 2px solid $alt-fg-color-inverted;
|
||||
}
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user