blob: 6f8282f5c7663d2de7b328295b9231abe9b2b3ff (
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
|
$customColors: (
'caution': $error-color,
'info': $info-color,
'contrast': $off-black,
'success': $success-color,
);
@each $name, $color in $customColors {
.#{$name}-color {
background-color: $color;
}
.#{$name}-color-text {
color: $color;
}
}
html {
background-color: $bg-color;
}
a.unmarked {
color: $off-black;
}
div.targetlist {
display: grid;
grid-template-columns: 1fr max-content;
align-items: center;
> a.nonflex {
padding-left: 1em;
padding-top: 1em;
padding-bottom: 1em;
display: inline-block;
}
}
a.tablerow {
display: flex;
justify-content: space-between;
padding-top: 1em;
padding-bottom: 1em;
border-bottom: 1px solid rgba(0,0,0,0.12);
span {
display: inline-block;
}
}
.pagination {
li {
a {
color: $off-black;
}
}
}
.collection-item {
color: $off-black;
.secondary-content {
color: $off-black;
}
&.disabled {
color: $inactive-color;
}
}
|