forked from flatsiedatsie/domoticz-aurora-theme
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathextra_fluid.css
55 lines (43 loc) · 1.5 KB
/
extra_fluid.css
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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
/* this allows items to use even more of the space on the screen. */
body:not(.settings) #main-view > .container {
width: 100%!important;
}
body .span3,
body .span4{
margin-bottom:1em;
flex-grow: 1;
}
body:not(.settings) .span3{
width: 220px;
min-width:150px;
}
body:not(.settings) .span4{
width: 320px;
min-width:250px;
}
#dashcontent{
width:100%;
}
/*@media all and (min-width: 601px) and (max-width: 1000px)*/
@media all and (min-width: 601px) and (max-width: 767px){
body:not(.settings) .span4,
body:not(.settings) .span3{margin-left: 10px;margin-right: 10px}
}
@media all and (min-width: 768px) and (max-width: 1100px){
/*body:not(.settings) .span4{max-width:calc(50%);}
body:not(.settings) .span3{max-width:calc(33.33%);}*/
body:not(.settings) .span4{max-width:calc(33.33% - 20px);}
body:not(.settings) .span3{max-width:calc(33.33% - 20px);}
}
@media all and (min-width: 1101px) and (max-width: 1500px){
body:not(.settings) .span4{max-width:calc(33.33% - 20px);}
body:not(.settings) .span3{max-width:calc(25% - 16px);}
/*body:not(.settings) .span4{max-width:33.33%;}
body:not(.settings) .span3{max-width:25%;}*/
}
@media all and (min-width: 1501px){
/*body.dashboard .span4:last-of-type{max-width:400px;padding-right:20px}
body.dashboard .span4:last-of-type{max-width:700px;padding-right:20px}*/
body:not(.settings) .span4{max-width:calc(25% - 20px);}
body:not(.settings) .span3{max-width:calc(25% - 16px);}
}