css: factor out colors from main css (#4158).

This commit is contained in:
evazion
2019-09-17 00:28:41 -05:00
parent d203a543d0
commit c325bfa199
52 changed files with 519 additions and 332 deletions

View File

@@ -1,7 +1,7 @@
@import "../base/000_vars.scss";
body {
background-color: #FFF;
background-color: var(--body-background-color);
font-family: $base_font_family;
font-size: 87.5%;
line-height: 1.25em;
@@ -11,13 +11,6 @@ abbr[title=required] {
display: none;
}
blockquote {
margin: 0 0 1em 0;
padding: 1em 1em 0.2em;
border: 1px solid #666;
background: #EEE;
}
code {
font-family: monospace;
font-size: 1.2em;
@@ -88,17 +81,17 @@ table tfoot {
}
.hint {
color: #666;
color: var(--hint-color);
font-style: italic;
}
.tn {
font-size: 0.8em;
color: gray;
color: var(--translation-note-color);
}
p.info {
color: #AAA;
color: var(--info-color);
font-style: italic;
font-size: 80%;
}