-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
127 lines (111 loc) · 2.54 KB
/
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
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
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
#main-field {
padding: 10px 20px 10px 20px;
border: 1px solid #F5F5F5;
text-align: center;
position: fixed;
background: #ffffff;
-webkit-user-select: none;
}
.quiz-timeline {
border: 0px solid #E1ECF9;
height: 20px;
padding: 0px 0px 0px 0px;
margin: 0px 0px 10px 0px;
}
.quiz-timeline span {
width: 20px;
height: 20px;
color: #cccccc;
display: inline-block;
padding-top: 0px;
vertical-align: middle;
text-align: center;
line-height: 1.3;
margin: 0px 5px 0px 5px;
}
#current {
width: 20px;
height: 20px;
display: inline-block;
padding-top: 0px;
background-color: #f77a55;
color: white;
-moz-border-radius: 10px;
-webkit-border-radius: 10px;
border-radius: 10px;
vertical-align: middle;
text-align: center;
line-height: 1.3;
margin: 0px 5px 0px 5px;
}
.question {
padding: 10px 10px 10px 10px;
text-align: left;
font: 18px/0 Arial, Helvetica, sans-serif;;
margin: 0px 0px 10px 0px;
color: #f41f1f;
}
.radio {
float: left;
margin-left: 20px;
vertical-align: middle;
cursor: pointer;
}
.label {
float: left;
margin-left: 5px;
font-size: 16px;
color: #606060;
padding: 0px;
vertical-align: middle;
}
.footer {
padding: 10px 0px 0px 0px;
border: 0px solid #F5F5F5;
text-align: right;
}
.button {
width: 130px;
display: inline-block;
border: none;
text-align: center;
font-size: 13px;
padding: 5px 5px 5px 5px;
transition: all 0.5s;
cursor: pointer;
/*margin: 7px 7px;*/
}
.start {
background-color: #C0C0C0;
color: #D3D3D3;
}
.start:hover {
background-color: #f4511e;
color: #FFFFFF;
}
.animated {
background-color: #f4511e;
color: #FFFFFF;
}
.animated span {
cursor: pointer;
display: inline-block;
position: relative;
transition: 0.5s;
}
.animated span:after {
content: '\00BB';
position: absolute;
opacity: 0;
top: -5px;
right: -10px;
transition: 0.5s;
font-size: 20px;
}
.animated:hover span {
padding-right: 15px;
}
.animated:hover span:after {
opacity: 1;
right: 0;
}