blob: 702cc044713612acbbc904157b9e430b30c3d0ec (
plain)
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
|
label[for="navicon"] {
display: block;
}
#header h1 {
padding-left: 30px;
}
#content {
padding-left: 5px;
}
#footer {
padding-left: 5px;
}
.row .hostinfo {
font-size: 0.7em;
opacity: 0.6;
}
.plugins {
position: absolute;
z-index: 0;
display: none;
}
.navicon:checked ~ .plugins {
display: block;
}
.graphs {
position: relative;
z-index: 1;
background: #fff;
min-height: 100%;
min-width: 100%;
bottom: 100%;
}
.navicon:checked ~ .graphs {
left: 125px;
}
|