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
| :root {
--accent: #1266e2;
--accent-text: #ffffff;
--radius: 3px;
}
.story {
margin-top: 8px;
margin-bottom: 8px;
}
.form-link {
display: inline;
margin-bottom: 0px;
}
.btn-link {
background: none;
border: none;
padding: 0;
cursor: pointer;
text-decoration: underline;
font-size: inherit;
font-family: inherit;
font-weight: inherit;
}
#content {
max-width: 800px;
margin: auto;
}
.full-form {
max-width: 400px;
margin: auto;
margin-top: 64px;
}
.svg-icon {
height: 16px;
width: 16px;
display: flex;
}
.wh24 {
height: 24px;
width: 24px;
}
|