blob: 5bb67ea409a7a36b79e08925ad139659d530dbbe (
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
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
|
.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;
margin: 0;
z-index: 1;
}
.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;
}
.accountAvatar {
background-size: cover;
}
.accountAvatar.round {
border-radius: 9999999px;
}
.messagePage .button {
float: none;
}
.messagePage > * { margin-bottom: var(--spacing-large); }
.messagePage > *:last-child { margin-bottom: 0; }
.messagePage .harry {
width: 128px;
height: 128px;
}
.messagePage p {
max-width: 623px;
margin: 0 auto;
margin-bottom: var(--spacing-large);
}
|