-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathstyle.css
56 lines (48 loc) · 900 Bytes
/
style.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
html {
font-size: 100%;
font-family: sans-serif;
}
#parameter {
vertical-align: middle;
}
input[type=radio] {
margin-right: 8px;
}
input[type=radio] {
display: none;
}
input[type=radio] + label {
position: relative;
padding: 0 15px 0 20px;
font-size: medium;
}
input[type=radio] + label::before {
position: absolute;
content: '';
display: block;
width: 12px;
height: 12px;
border-radius: 50%;
background: #fff;
border: 1px solid #d2d2d2;
left: 0;
top: 0;
}
input[type=radio] + label::after {
position: absolute;
content: '';
display: block;
width: 6px;
height: 6px;
border-radius: 50%;
background: #666666;
left: 4px;
top: 4px;
opacity: 0;
}
input[type=radio]:checked + label::before {
border: 1px solid #666666;
}
input[type=radio]:checked + label::after {
opacity: 1;
}