-
Notifications
You must be signed in to change notification settings - Fork 0
/
styles.css
63 lines (53 loc) · 888 Bytes
/
styles.css
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
* {
font-family: 'Lexend', sans-serif;
}
ol, ul {
margin: 0px;
padding: 0px;
list-style-position: inside;
}
ol:empty, ul:empty {
display: none;
}
textarea {
white-space: pre;
resize: none;
}
label {
display: block;
margin-bottom: 5px;
text-decoration: underline;
}
.fieldset {
margin-bottom: 10px;
margin-right: 10px;
}
.preference-selector {
display: none;
position: fixed;
top: 0; right: 0; bottom: 0; left: 0;
background-color: white;
align-items: center;
justify-content: center;
flex-direction: column;
text-align: center;
}
.preference-selector.enabled {
display: flex;
}
.preferences {
display: grid;
grid-template-columns: repeat(3, 1fr);
align-items: start;
grid-gap: 15px;
margin: 0 15px;
}
.preferences > span {
border: 1px solid black;
padding: 10px;
border-radius: 10px;
cursor: pointer;
}
.preference-selector > p {
margin-top: 0;
}