-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
98 lines (82 loc) · 1.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
*{
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
}
body{
background: #2980b9;
}
.main{
background: #fff;
width: 90%;
max-width: 600px;
border-radius: 10px;
padding: 20px ;
margin: 100px auto 0;
}
.main h1{
font-size: 30px;
color: #ce7312;
font-weight: 600;
border-bottom: 1px solid #333;
padding-bottom: 20px;
}
.main h2{
font-size: 19px;
font-weight: 700;
margin-bottom: 20px;
}
.buttons{
display: flex;
}
.btn{
background: #fff;
width: 100%;
font-weight: 500;
border:1px solid #333;
padding: 10px;
margin: 10px 0;
text-align: left;
border-radius: 7px;
cursor: pointer;
transition: all 0.4s;
}
.btn:hover:not([disabled]){
background:#333;
color: #ce7312;
}
.btn:disabled{
cursor: not-allowed;
}
#next-btn{
background: chartreuse;
width: 160px;
font-weight: 600;
border: 0;
border-radius: 10px;
padding: 10px;
margin: 20px auto 0;
display: block;
cursor: pointer;
}
#prev-btn{
background: chartreuse;
width: 160px;
font-weight: 600;
border: 0;
border-radius: 10px;
padding: 10px;
margin: 20px auto 0;
display: block;
cursor: pointer;
display: none;
}
.correct{
background: #9aeabc;
}
.incorrect{
background: #ff9393;
}
/* .quiz{
} */