blob: f6b051d7686553623f8ff3c82658f0d5a9b6f69a (
plain) (
blame)
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
|
details {
background-color: var(--base001);
padding: 1rem;
border-radius: 4px;
}
ul {
margin: 0;
}
input,
select {
cursor: pointer;
position: relative;
background-color: #fff;
/* margin: 0; */
/* width: 1.15em;
height: 1.15em; */
padding: 0.25em;
border: none;
border-radius: 4px;
transform: translateY(0.175em);
place-content: center;
}
select {
transform: translateY(0em);
margin-top: 0.25em;
margin-bottom: 0.25em;
}
input[type='checkbox'] {
-webkit-appearance: none;
appearance: none;
margin: 0;
width: 1.15em;
height: 1.15em;
}
input[type='checkbox']:checked:before {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
content: '†';
color: black;
}
|