blob: 9a5c19852006a17e2f04b6ba39b8a38b749a1b40 (
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
|
.alertbox {
border: 1px solid;
border-radius: 8px;
margin: 16px;
padding: 16px;
&.info {
border-color: #23f4;
background: #5673ff44;
}
p {
margin: 0;
padding: 0;
}
}
button.primary,
button.secondary {
font-family: inherit;
font-size: inherit;
border-radius: 8px;
border: none;
padding: 8px 16px;
box-sizing: border-box;
cursor: pointer;
&:disabled {
opacity: 80%;
cursor: default;
}
&.primary {
background: #3b005e;
color: #fff;
}
&.secondary {
background: #dfd4e7;
color: #202;
}
}
button.icon {
border: none;
background: none;
aspect-ratio: 1;
margin: 0;
padding: 0;
&.active {
font-variation-settings: "FILL" 1;
}
}
a.icon {
color: inherit;
text-decoration: none;
font-size: 24px;
}
span.inlineIcon {
font-size: inherit;
color: inherit;
user-select: none;
}
span.unreadIndicator {
background: #3b005e;
color: #fff;
width: 24px;
height: 24px;
border-radius: 12px;
display: inline-flex;
align-items: center;
justify-content: center;
font-weight: bold;
}
[hidden] {
display: none;
}
|