-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathveeam.scss
68 lines (56 loc) · 944 Bytes
/
veeam.scss
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
$background: #444;
$text: #fff;
$success: #444;
$successs: #597526;
$warning: #e98000;
$failure: #ec663c;
$info: rgb(3, 161, 252);
$error: #ec663c;
$unknown: #b5b5b5;
.widget-veeam {
li {
position: absolute;
top: 0;
bottom: 0;
left: 0;
right: 0;
padding-top: 25px;
i {
font-size: 90px
}
h3 {
font-size: 60px;
font-weight: bold;
}
h4 {
font-size: 20px;
font-weight: bold;
text-transform: uppercase;
}
.hostnumbers {
font-size: 30px;
color: inherit;
}
p &.updated-at {
font-size: 10px;
}
&.green {
background-color: $success;
}
&.yellow {
background-color: $warning;
}
&.red {
background-color: $failure;
}
&.grey {
background-color: $unknown;
}
&.blue {
background-color: $info;
}
&.error {
background-color: $error;
}
}
}