-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
101 lines (87 loc) · 1.4 KB
/
Copy pathstyle.css
File metadata and controls
101 lines (87 loc) · 1.4 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
97
98
99
100
101
body {
font-family: Arial, sans-serif;
background-color: #f4d4d4;
color: #333;
height: 100vh;
}
#start-button {
display: block;
margin: 0 auto;
cursor: pointer;
margin-top: 20px;
}
#main-container {
display: none;
width: 60%;
margin: auto;
}
#quiz-container {
background-color: #efd4d4;
padding: 20px;
text-align: center;
border-radius: 10px;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
margin: auto;
margin-top: 50px;
border: 2px solid #4caf50;
}
h1 {
background-color: #000;
color: #fff;
padding: 20px;
margin: 0;
width: 100%;
}
.option {
padding: 10px;
margin: 5px 0;
background-color: #d5fac9;
border-radius: 5px;
}
.option.selected {
background-color: #4caf50;
color: white;
}
#question {
font-size: 20px;
margin-top: 20px;
}
.main-container {
margin-top: 30px;
}
#options {
margin: 20px;
display: flex;
flex-direction: column;
align-items: flex-start;
font-size: large;
padding: 5px;
}
#options-container {
display: flex;
align-items: center;
justify-content: center;
}
#timer-container {
font-size: 16px;
margin-top: 10px;
}
#score-container {
margin: auto;
text-align: center;
}
button {
background-color: #1e9ed1;
color: white;
padding: 10px 20px;
border: none;
border-radius: 5px;
font-size: 16px;
}
footer {
text-align: center;
margin-top: 20px;
font-size: 14px;
color: #666;
margin:0 auto;
}