-
Notifications
You must be signed in to change notification settings - Fork 2
/
style.scss
57 lines (44 loc) · 1.17 KB
/
style.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
$red-bg: #ffdce0;
$yellow-bg: #fff0c2;
$green-bg: #d3ebd3;
table.stdlist>tbody>tr:is(.row0, .row1) {
&.seven-days-left {
background-color: $green-bg !important;
&:hover,
&.hilitecolor td {
background-color: adjust-color($green-bg, $lightness: -2%) !important;
}
&.row1 {
background-color: adjust-color($green-bg, $lightness: 2%) !important;
}
a {
color: adjust-color($green-bg, $lightness: -75%) !important;
}
}
&.three-days-left {
background-color: $yellow-bg !important;
&:hover,
&.hilitecolor td {
background-color: adjust-color($yellow-bg, $lightness: -2%) !important;
}
&.row1 {
background-color: adjust-color($yellow-bg, $lightness: 2%) !important;
}
a {
color: adjust-color($yellow-bg, $lightness: -75%) !important;
}
}
&.one-day-left {
background-color: $red-bg !important;
&:hover,
&.hilitecolor td {
background-color: adjust-color($red-bg, $lightness: -2%) !important;
}
&.row1 {
background-color: adjust-color($red-bg, $lightness: 2%) !important;
}
a {
color: adjust-color($red-bg, $lightness: -75%) !important;
}
}
}