diff options
author | Rigel Kent <sendmemail@rigelk.eu> | 2018-09-04 01:28:04 +0200 |
---|---|---|
committer | Rigel Kent <par@rigelk.eu> | 2018-09-04 23:24:34 +0200 |
commit | 9a0fc8409c7a783348ec212fa9f38d0a98413467 (patch) | |
tree | 8b17264ef915e339d067abe6717c1574f1a2f36b /client/src/app/app.component.scss | |
parent | 3b766e181c59ce148fde73e507276c9fbaf37eb1 (diff) | |
download | PeerTube-9a0fc8409c7a783348ec212fa9f38d0a98413467.tar.gz PeerTube-9a0fc8409c7a783348ec212fa9f38d0a98413467.tar.zst PeerTube-9a0fc8409c7a783348ec212fa9f38d0a98413467.zip |
add theming via css custom properties
and a bonus dark color theme toggle
Diffstat (limited to 'client/src/app/app.component.scss')
-rw-r--r-- | client/src/app/app.component.scss | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/client/src/app/app.component.scss b/client/src/app/app.component.scss index e772e3a37..b51a81eb1 100644 --- a/client/src/app/app.component.scss +++ b/client/src/app/app.component.scss | |||
@@ -7,6 +7,7 @@ | |||
7 | 7 | ||
8 | .sub-header-container { | 8 | .sub-header-container { |
9 | margin-top: $header-height; | 9 | margin-top: $header-height; |
10 | background-color: var(--mainBackgroundColor); | ||
10 | } | 11 | } |
11 | 12 | ||
12 | .header { | 13 | .header { |
@@ -14,7 +15,7 @@ | |||
14 | position: fixed; | 15 | position: fixed; |
15 | top: 0; | 16 | top: 0; |
16 | width: 100%; | 17 | width: 100%; |
17 | background-color: $bg-color; | 18 | background-color: var(--mainBackgroundColor); |
18 | z-index: 1000; | 19 | z-index: 1000; |
19 | box-shadow: 0 1px 3px rgba(0, 0, 0, 0.16); | 20 | box-shadow: 0 1px 3px rgba(0, 0, 0, 0.16); |
20 | display: flex; | 21 | display: flex; |
@@ -31,7 +32,8 @@ | |||
31 | @include icon(24px); | 32 | @include icon(24px); |
32 | 33 | ||
33 | &.icon-menu { | 34 | &.icon-menu { |
34 | background-image: url('../assets/images/header/menu.svg'); | 35 | background-color: var(--mainForegroundColor); |
36 | mask-image: url('../assets/images/header/menu.svg'); | ||
35 | margin: 0 18px 0 20px; | 37 | margin: 0 18px 0 20px; |
36 | } | 38 | } |
37 | } | 39 | } |
@@ -83,7 +85,6 @@ | |||
83 | } | 85 | } |
84 | 86 | ||
85 | footer { | 87 | footer { |
86 | border-top: 1px solid $footer-border-color; | ||
87 | padding: 10px 0; | 88 | padding: 10px 0; |
88 | font-size: 11px; | 89 | font-size: 11px; |
89 | margin-top: $footer-margin; | 90 | margin-top: $footer-margin; |