-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathstyle1.css
More file actions
96 lines (96 loc) · 1.99 KB
/
style1.css
File metadata and controls
96 lines (96 loc) · 1.99 KB
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
:root{
--ff-philosopher: 'Philosopher',sans-serif;
--fs-1: 1.6rem;
}
.content {
margin-top: 54px;
}
.header {
padding: 15px;
position: fixed;
top: 0;
width: 100%;
z-index: 9999;
}
.left-title {
width: 80px;
color: #2E4756;
font-size: 30px;
float: left;
font-family: var(--ff-philosopher);
}
.right-title {
width: 150px;
text-align: right;
float: right;
color: #2E4756;
font-family: var(--ff-philosopher);
}
.quiz-body {
margin-top: 15px;
padding-bottom: 50px;
}
.option-block-container {
margin-top: 20px;
max-width: 420px;
}
.option-block {
padding: 10px;
background: #C27A7E;
border: 1px solid #C27A7E;
margin-bottom: 10px;
cursor: pointer;
color: #fff;
}
input[type='radio'] {
margin-right: 12px;
}
.result-question {
font-weight: bold;
}
.c-wrong {
margin-left: 20px;
color: #ff0000;
}
.c-correct {
margin-left: 20px;
color: green;
}
.last-row {
border-bottom: 1px solid #ccc;
padding-bottom: 25px;
margin-bottom: 25px;
}
.res-header {
border-bottom: 1px solid #ccc;
margin-bottom: 15px;
padding-bottom: 15px;
}
.perv{
background-color: #fff;
border: 1px solid #C27A7E;
color: #C27A7E;
padding: 10px;
}
.next{
background-color: #fff;
border: 1px solid #C27A7E;
color: #C27A7E;
padding: 10px;
padding-left: 20px;
padding-right: 20px;
}
.perv:hover{
background-color: #C27A7E;
color: #fff;
border: none;
transition: .3s;
font-family: var(--ff-philosopher);
}
.next:hover{
background-color: #C27A7E;
color: #fff;
border: none;
transition: .3s;
font-family: var(--ff-philosopher);
}