-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
95 lines (94 loc) · 1.76 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
body {
margin: 0px;
font-family: Arial, Helvetica, sans-serif;
background: #F4F4F4;
}
.quiz-heading {
background: #343A40;
color: white;
text-align: center;
padding: 20px;
}
.question-card {
background: white;
max-width: 600px;
width: 90%;
padding: 15px 20px;
margin: 50px auto;
border-radius: 10px;
box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}
input {
margin: 10px 5px;
cursor: pointer;
}
.submit {
background: #FFC107;
border: none;
border-radius: 5px;
padding: 9px 15px;
}
.next {
background: #28A745;
color: white;
border: none;
border-radius: 5px;
padding: 9px 15px;
}
li {
margin: 20px;
}
.answer-label {
background: #28A745;
color: white;
padding: 5px;
font-size: 14px;
text-align: center;
width: fit-content;
margin: 5px;
border-radius: 5px;
}
.correct {
background: #D4EDDA;
color: #156340;
margin: 5px 0px -15px 0px !important;
border-radius: 5px;
padding: 20px;
font-size: 20px;
font-weight: bold;
width: fit-content;
}
.incorrect {
background: #F8D7DA;
color: #722845;
margin: 5px 0px -15px 0px !important;
border-radius: 5px;
padding: 20px;
font-size: 20px;
font-weight: bold;
width: fit-content;
}
.idle {
margin: 0px !important;
padding: 0px;
visibility: hidden;
}
.app-body {
max-width: 600px;
width: 90%;
padding: 10px 10px;
margin: 0px auto;
}
.answer-key {
margin: 0px 10px;
display: none;
}
button {
background: #17A2B8;
color: white;
border: none;
border-radius: 5px;
padding: 9px 15px;
margin: 0px 10px;
display: none;
}