css: factor out colors from main css (#4158).
This commit is contained in:
@@ -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%;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user