blob: 7009abbb1646d673b6844a2ebd18b5e98a3e463b (
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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
|
html, body {
width: 100%;
height: 100% !important;
}
#sidebar .list-group-item {
background-color: transparent;
}
.toast {
margin: 10px;
}
.nav.ogcp-nav {
position: relative;
}
.ogcp-nav .nav-item {
padding-left: 20px;
position: relative;
}
.ogcp-nav .nav-link {
padding: 0;
}
.ogcp-nav .active > .nav-link {
font-weight: bold;
background: slategrey;
border-radius: 10rem;
}
.text-wol {
color: #99791a !important;
}
.text-linux {
color: #d77cb3 !important;
}
.text-windows {
color: #2d9efb !important;
}
.badge-wol {
color: white !important;
background-color: #99791a !important;
}
.badge-linux {
background-color: #d77cb3 !important;
}
.badge-windows {
background-color: #2d9efb !important;
}
.og-pill {
width: 11em;
}
#dhcpd_conf {
height: 25rem;
}
a.nav-link.collapsed:not(.disabled)[data-toggle="collapse"]::before {
content: "▶";
position: absolute;
left: -15px;
font-size: 0.7em;
}
a.nav-link:not(.collapsed):not(.disabled)[data-toggle="collapse"]::before {
content: "▶";
position: absolute;
left: -15px;
transform: rotate(90deg);
font-size: 0.7em;
}
|