blob: cb95b361b6063d8fcac4bfe6717e7521c6759cca (
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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
|
.vierkant {
margin: var(--spacing-small);
display: inline-block;
position: relative;
box-sizing: border-box;
}
html.dark .button { color: var(--foreground); }
.button {
background-color: var(--accent);
color: var(--gray-900);
text-align: center;
cursor: pointer;
position: relative;
text-decoration: none;
display: block;
user-select: none;
font-weight: 600;
}
.button.iconlabel,
.button.colorpicker {
margin-left: var(--spacing-medium);
}
.button.colorpicker {
--color: var(--gray-100);
--background: #ff00ff;
background-color: var(--background);
color: var(--color);
border-width: 2px;
border-style: solid;
border-color: var(--color);
}
.button.iconlabel .label {
margin: 3px;
margin-left: 8px;
}
.button.colorpicker .labelwrapper {
width: 150px;
height: 24px;
}
.button.colorpicker .labelwrapper .label {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
font-feature-settings: "tnum", "ss01";
}
.bubble {
margin: 0;
overflow: visible;
left: 50%;
top: -24px;
transform: translateY(-100%) translateX(-50%);
}
.bubble .tuitje {
bottom: -12px;
transform: translate(-50%, 0%) rotate(0deg);
}
.dialogbox { width: 392px; }
.dialogbox > .title { margin-bottom: var(--spacing-large); }
.dialogbox .icon.close {
top: 25px;
right: 25px;
cursor: pointer;
}
html.dark .dialogbox { background-color: var(--gray-700); }
.searchBar {
overflow: hidden;
}
.searchBar .button {
border-radius: 0;
padding: 10px;
}
.searchBar .input {
width: calc(100% - 44px);
box-sizing: border-box;
}
.checkbox {
cursor: pointer;
}
.CenteredPageOuter {
margin: 0 auto;
}
.CenteredPageInner {
margin: 0 var(--spacing-small);
line-height: 0;
}
.pageTitle {
margin-left: var(--spacing-small);
margin-top: 32px;
margin-bottom: 64px;
}
|