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
|
/* fond */
#main-container {
background-color: #000;
}
/* bandeau principal */
body.theme-blue nav[role="main"],
/* bandeaux de titre */
body.theme-blue .box .box-header {
background-color: hsl(203, 76%, 46%);
}
nav[role="main"],
/* logo */
nav[role="main"] #appname a {
color: hsl(0, 0%, 15%);
}
/* police */
body {
font-family: "DejaVu Sans", sans-serif;
}
/* blocs */
.box {
background-color: hsl(0, 0%, 15%);
color: hsl(0, 0%, 85%);
}
body.theme-blue .box {
border-color: hsl(0, 0%, 40%);
}
/* titre */
.box .box-header h1 {
color: hsl(0, 0%, 15%);
}
/* table */
table:not(.no-style) tbody tr:nth-child(2n+1) {
background-color: hsl(0, 0%, 25%);
}
table:not(.no-style) tr {
border-bottom-color: hsl(0, 0%, 50%);
border-top-color: hsl(0, 0%, 50%);
}
body.theme-blue table:not(.no-style) tbody tr:nth-child(2n):hover {
background: hsl(0, 0%, 15%);
}
body.theme-blue table:not(.no-style) tbody tr:nth-child(2n+1):hover {
background: hsl(0, 0%, 25%);
}
/* bouton recharger */
body.theme-blue .box .box-header ul li a:hover:not(.disabled),
body.theme-blue nav[role="main"] > ul > li > a:hover {
background: hsl(203, 76%, 46%);
color: white !important;
}
.box .box-header ul li a,
nav[role="main"] > ul > li > a {
color: hsl(0, 0%, 15%);
}
/* barre de progression */
.progressbar-wrap .progressbar.orange {
background-color: hsl(23, 76%, 60%);
}
.progressbar-wrap .progressbar.green {
background-color: hsl(111, 50%, 50%);
}
.progressbar {
color: black;
}
/* online offline */
span.label {
color: black;
}
|