-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.scss
63 lines (58 loc) · 1.12 KB
/
style.scss
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
.panel {
margin-top: 2em;
.panel-content {
padding: 1em;
}
}
.wrongAnswer {
color: red;
text-decoration: line-through;
&::after {
font-family: FontAwesome;
content: " \f00d"; // X
display: inline-block;
margin-left: 0.5em;
text-decoration: none;
// color: blue;
}
}
.rightAnswer {
color: green;
&::after {
font-family: FontAwesome;
content: " \f00c"; // V
display: inline-block;
margin-left: 0.5em;
}
}
.progress {
height: 2em;
span {
font-size: 1.5em;
line-height: 1.5em;
}
}
form {
font-size: 1.5em;
line-height: 2em;
margin-top: 1em;
.radio {
// padding-left: 20px;
label {
width: 100%;
border-radius: 5px;
padding-left: 2em;
input {
height: 1.5em;
}
&:hover {
background: rgba(51, 122, 183, 0.28);
}
}
}
}
.grey {color: grey; }
.white {color: white; }
.green {color: green; }
.orange {color: orange; }
.red {color: red; }