Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/vjeantet/hugo-theme-docport.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/assets
diff options
context:
space:
mode:
authorvjeantet <valere.jeantet@gmail.com>2020-07-27 03:51:51 +0300
committervjeantet <valere.jeantet@gmail.com>2020-07-27 03:51:51 +0300
commitf306343cb87ff000916e94848301dffc1eb5d614 (patch)
tree24759c6755d9d393271e78232296de0e5b9ef5e9 /assets
parent533968e8aecfeaec72684b70f4d20700ddd8ec97 (diff)
header is black
Diffstat (limited to 'assets')
-rw-r--r--assets/sass/main.scss19
1 files changed, 12 insertions, 7 deletions
diff --git a/assets/sass/main.scss b/assets/sass/main.scss
index 1da65f0..f1514ac 100644
--- a/assets/sass/main.scss
+++ b/assets/sass/main.scss
@@ -46,7 +46,8 @@ body{
header {
- background-color: white;
+ background-color: $c_dark2;
+
border-bottom: 2px solid gray ;
box-shadow: 0 0 0.2rem rgba(0,0,0,.1), 0 0.2rem 0.4rem rgba(0,0,0,.2);
@@ -56,8 +57,10 @@ body{
justify-content: space-between;
align-items: stretch ;
- color:$c_dark1;
-
+ color:($c_light2);
+ a {
+ color:invert($c_dark2);
+ }
.logo {
display: flex;
flex-direction: row;
@@ -103,8 +106,7 @@ body{
}
a {
-
- color:$c_saturate2;
+ color:lighten($c_saturate1,10%);
padding: 0 1rem;
font-weight: bold;
font-size: 90%;
@@ -176,8 +178,11 @@ body{
}
footer {
- background-color: black;
- color:#D9D9D9;
+ background-color: $c_dark2;
+ color:invert($c_dark2);
+ a{
+ color:invert($c_light4);
+ }
padding: 3rem;
}