-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathstyle.css
More file actions
60 lines (60 loc) · 1.28 KB
/
style.css
File metadata and controls
60 lines (60 loc) · 1.28 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
body {
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
display: flex;
justify-content: center;
align-items: center;
min-height: 100vh;
background: linear-gradient(135deg, #6a11cb, #2575fc);
color: white;
}
.quiz-container {
background: #fff;
color: #333;
padding: 20px 30px;
border-radius: 8px;
box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
width: 100%;
max-width: 500px;
}
.quiz-header {
margin-bottom: 20px;
}
.quiz-header h2 {
margin: 0;
font-size: 1.5rem;
}
.quiz-body {
margin-bottom: 20px;
}
.quiz-body label {
display: block;
margin: 10px 0;
cursor: pointer;
}
.quiz-body input[type="radio"] {
margin-right: 10px;
}
.quiz-footer {
text-align: center;
}
.quiz-footer button {
background: #2575fc;
color: #fff;
border: none;
padding: 10px 20px;
border-radius: 5px;
cursor: pointer;
font-size: 1rem;
}
.quiz-footer button:hover {
background: #6a11cb;
}
.result {
text-align: center;
}
.result h3 {
font-size: 1.5rem;
color: #2575fc;
}