forked from EdddieN/machinon-domoticz_theme
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcustom.css
More file actions
31 lines (27 loc) · 709 Bytes
/
Copy pathcustom.css
File metadata and controls
31 lines (27 loc) · 709 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
@charset "UTF-8";
/* import css files */
@import url('https://fonts.googleapis.com/css?family=Open+Sans');
@import url("css/fonts.css");
/*var in way of change color*/
:root {
/*use with var(--main-blue-color)*/
--main-bg-color: #f1f1f1;
--main-blue-color: #0b96cd;
--secondary-blue-color: #0bcdc7;
--main-item-bg-color: #fff;
--main-text-color: #000;
--secondary-text-color: gray;
}
/* Hide domoticz features */
#holder #copyright,
.navbar .brand img,
.navbar .brand h1,
.navbar .brand h2,
.navbar .brand hidden-phone{
display: none;
}
/*///////////////////////////////// body section //////////////////////////////*/
body {
background:var(--main-bg-color) !important;
color: #1a1a1a;
}