Newer
Older
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
page-survey-write {
.item-ios p {
margin: 15px 0;
white-space: normal;
}
.input-radio {
border: 1px solid #ddd;
display: inline-block;
border-radius: 50%;
width: 16px;
height: 16px;
margin-right: 8px;
vertical-align: sub;
position: absolute;
top: 1px;
left: -20px;
}
label {
position: relative;
input {
display: none;
}
}
input:checked + .input-radio::after {
content: '';
position: absolute;
width: 10px;
top: 2px;
height: 10px;
border-radius: 50%;
background-color: #333;
left: 2px;
}
.input-check {
border: 1px solid #ddd;
display: inline-block;
width: 15px;
height: 15px;
margin-right: 8px;
vertical-align: text-top;
border-radius: 2px;
position: absolute;
top: 1px;
left: -20px;
}
input:checked + .input-check::after {
content: '\2713';
position: absolute;
width: 10px;
top: -4px;
left: 0px;
height: 10px;
font-size: 1.5rem;
font-weight: bold;
}
.content-textarea {
padding: 10px;
min-height: 100px;
width: 100%;
border: 1px solid #ddd;
}
.submit {
margin-top: 20px;
border: 1px solid #34b4fc;
background-color: #34b4fc;
}
}