Set header color with scss
This commit is contained in:
parent
d76900891b
commit
cfc01dc857
@ -941,6 +941,9 @@ body {
|
||||
background: #111111;
|
||||
color: #dddddd; }
|
||||
|
||||
#header {
|
||||
background: #9c5ea2; }
|
||||
|
||||
#sidebar {
|
||||
background-color: #47314f; }
|
||||
#sidebar ul.topics > li.parent, #sidebar ul.topics > li.active {
|
||||
|
File diff suppressed because one or more lines are too long
@ -12,12 +12,12 @@ Put your custom CSS in this file.
|
||||
}*/
|
||||
|
||||
/* sidebar top portion */
|
||||
#sidebar #header {
|
||||
/*background-color: #111314;*/
|
||||
/*background-color: #1e1321;*/
|
||||
/*background-color: #111111;*/
|
||||
/*#sidebar #header {
|
||||
background-color: #111314;
|
||||
background-color: #1e1321;
|
||||
background-color: #111111;
|
||||
background-color: #9c5ea2;
|
||||
}
|
||||
}*/
|
||||
|
||||
/* search box in sidebar */
|
||||
#sidebar #header .searchbox {
|
||||
|
@ -1,5 +1,6 @@
|
||||
// Core
|
||||
$core-text: #dddddd;
|
||||
$core-accent: #9c5ea2;
|
||||
|
||||
// Background
|
||||
$page-bg: #111111;
|
||||
|
@ -18,5 +18,8 @@
|
||||
// Core
|
||||
@import "theme/core";
|
||||
|
||||
// Header
|
||||
@import "theme/header";
|
||||
|
||||
// Nav
|
||||
@import "theme/nav";
|
||||
|
@ -1 +1,2 @@
|
||||
$header-bg: $core-accent;
|
||||
$sidebar-bg: #47314f;
|
||||
|
3
themes/custom-learn2-dark/scss/theme/_header.scss
Normal file
3
themes/custom-learn2-dark/scss/theme/_header.scss
Normal file
@ -0,0 +1,3 @@
|
||||
#header {
|
||||
background: $header-bg;
|
||||
}
|
Loading…
Reference in New Issue
Block a user