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

@@ -38,10 +38,10 @@
button[type=submit] {
font-size: 1.2em;
background-color: #EEE;
background-color: var(--responsive-sidebar-submit-button-background-color);
height: 42px;
padding: 2px 10px;
border: 1px solid rgb(197, 197, 197);
border: var(--responsive-sidebar-submit-button-border);
}
}
@@ -74,11 +74,6 @@
top: 2vw;
right: 3vw;
font-size: 2em;
&.toggler-active {
background-color: lighten($link_color, 25%);
color: #000;
}
}
/* Make the quick search box in the navbar full width. */
@@ -94,12 +89,12 @@
input[type=text] {
vertical-align: top;
font-size: 24pt;
border: 1px solid #c5c5c5;
border: var(--responsive-form-input-border);
}
textarea {
vertical-align: top;
border: 1px solid #c5c5c5;
border: var(--responsive-form-input-border);
}
input[type=submit] {
@@ -245,7 +240,7 @@
}
header#top menu.main {
background-color: lighten($link_color, 25%);
background-color: var(--responsive-menu-background-color);
padding: 5px 10px;
}