diff options
Diffstat (limited to 'client/src/sass/application.scss')
-rw-r--r-- | client/src/sass/application.scss | 17 |
1 files changed, 14 insertions, 3 deletions
diff --git a/client/src/sass/application.scss b/client/src/sass/application.scss index fd0d5e458..b96cf07c0 100644 --- a/client/src/sass/application.scss +++ b/client/src/sass/application.scss | |||
@@ -1,9 +1,9 @@ | |||
1 | @import '_variables'; | ||
2 | @import '_mixins'; | ||
3 | |||
4 | $icon-font-path: '../../node_modules/@neos21/bootstrap3-glyphicons/assets/fonts/'; | 1 | $icon-font-path: '../../node_modules/@neos21/bootstrap3-glyphicons/assets/fonts/'; |
5 | @import '_bootstrap'; | 2 | @import '_bootstrap'; |
6 | 3 | ||
4 | @import '_variables'; | ||
5 | @import '_mixins'; | ||
6 | |||
7 | @import '_fonts'; | 7 | @import '_fonts'; |
8 | 8 | ||
9 | @import '~video.js/dist/video-js.css'; | 9 | @import '~video.js/dist/video-js.css'; |
@@ -19,6 +19,17 @@ $assets-path: '../assets/'; | |||
19 | } | 19 | } |
20 | 20 | ||
21 | body { | 21 | body { |
22 | /*** theme ***/ | ||
23 | // now beware node-sass requires interpolation | ||
24 | // for css custom properties #{$var} | ||
25 | --mainColor: #{$orange-color}; | ||
26 | --mainHoverColor: #{$orange-hoover-color}; | ||
27 | --mainBackgroundColor: #{$bg-color}; | ||
28 | --mainForegroundColor: #{$fg-color}; | ||
29 | --submenuColor: #{$sub-menu-color}; | ||
30 | --inputColor: #{$input-color}; | ||
31 | --inputPlaceholderColor: #{$input-placeholder-color}; | ||
32 | |||
22 | font-family: $main-fonts; | 33 | font-family: $main-fonts; |
23 | font-weight: $font-regular; | 34 | font-weight: $font-regular; |
24 | color: var(--mainForegroundColor); | 35 | color: var(--mainForegroundColor); |