aboutsummaryrefslogtreecommitdiffstats
path: root/web/css/_src/_config.libs.scss
diff options
context:
space:
mode:
authorShevAbam <shevabam@gmail.com>2015-07-07 15:57:41 +0200
committerShevAbam <shevabam@gmail.com>2015-07-07 15:57:41 +0200
commit9970343fe5c8226f25234addc6b80836c092fe1f (patch)
treece8f029f3ce9251bd4c207a6427c356ad9042525 /web/css/_src/_config.libs.scss
parentdd982cee0716e38e68bc42ffb24952b5675a5b19 (diff)
General : cleaning and optimizing CSS
General : responsive design General : reload button now spins when you reload block General : update jQuery plugin Knob to 1.2.11 General : optimizing security (config file esm.config.json is now in the conf/ folder with an htaccess) CPU : retrieves correctly CPU frequency for Raspberry Pi CPU : add CPU temperature (+ option to enable/disable) System : little correction for getting distro name Swap : fix if swap is disabled Services status : adds protocol TCP or UDP for checking service status Services status : new option to hide port number (see show_port in services section)
Diffstat (limited to 'web/css/_src/_config.libs.scss')
-rw-r--r--web/css/_src/_config.libs.scss45
1 files changed, 23 insertions, 22 deletions
diff --git a/web/css/_src/_config.libs.scss b/web/css/_src/_config.libs.scss
index df02c1c..21d35c9 100644
--- a/web/css/_src/_config.libs.scss
+++ b/web/css/_src/_config.libs.scss
@@ -1,26 +1,27 @@
-/* Buttons */
-$button-default-color: #c5c5c5;
-$button-red: #ff0000;
-$button-orange: #fe9c43;
-$button-purple: #9a68c7;
-$button-blue: #3ba9e4;
-$button-green: #75b343;
-$button-black: #4b4b4b;
-$button-salmon: #F5AD9E;
+@import "_config.frontend";
/* Labels */
-$label-default: #bfbfbf;
-$label-success: #46a546;
-$label-warning: #f89406;
-$label-important: #c43c35;
-$label-notice: #62cffc;
-$label-border-radius: 3px;
-$label-font-size: 10px;
+$label: (
+ types: (
+ default: #bfbfbf,
+ success: #46a546,
+ warning: #f89406,
+ important: #c43c35,
+ error: #c43c35,
+ notice: #62cffc
+ ),
+ border-radius: 3px,
+ font-size: 10px
+);
/* Classic box */
-$classic-box-color: darken(#99AEC4, 7%);
-$classic-box-background: #fff;
-$classic-box-border: lighten(#99AEC4, 16%);
-$classic-box-header-height: 35px;
-$classic-box-title-color: #fff;
-$classic-box-title-fontsize: 14px;
+$classic-box: (
+ color: darken($main-color, 7%),
+ background: #fff,
+ border-color: lighten($main-color, 16%),
+ header: (
+ height: 35px,
+ color: #fff,
+ font-size: 14px
+ )
+); \ No newline at end of file