Newer
Older
.ques-title {
font-size: 1.5rem !important;
color: #333 !important;
}
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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
.item-type {
padding: 5px 10px;
background-color: #ededed;
}
.set-font {
font-size: 1.5rem;
color: #333333;
}
.add-btn {
padding: 5px 10px;
color: #32bbf9;
font-size: 16px;
}
.remove-radiu {
display: inline-block;
font-size: 16px;
text-align: center;
width: 20px;
border-radius: 50%;
border: 1px solid red;
height: 20px;
vertical-align: text-bottom;
}
.list-ios .item-block .item-inner {
padding-left: 16px;
}
.input-style {
border: none;
height: 3rem;
padding: 4px;
resize: none;
width: 90%;
}
.text-item {
display: flex;
align-items: center;
justify-content: center;
padding: 10px 5px;
}
.label {
position: relative;
input {
display: none;
}
}
.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: 10px;
left: 5px;
}
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: 10px;
left: 5px;
}
input:checked + .input-check::after {
content: '\2713';
position: absolute;
width: 10px;
top: -4px;
left: 0px;
height: 10px;
font-size: 1.5rem;
font-weight: bold;
}