-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathquiz.css
More file actions
130 lines (109 loc) · 2.1 KB
/
quiz.css
File metadata and controls
130 lines (109 loc) · 2.1 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
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
body {
background: linear-gradient(-45deg, #d0e6ff, #a3d4f7, #6db9ef, #4a90e2);
background-attachment: fixed;
scroll-behavior: smooth;
margin: 0;
padding: 0;
font-family: Arial, sans-serif;
}
.navbar {
display: flex;
justify-content: space-between;
align-items: center;
background-color: #004080;
color: white;
padding: 10px 30px;
z-index: 1;
position: relative;
}
.logo {
font-size: 24px;
font-weight: bold;
}
.nav-links {
list-style: none;
display: flex;
gap: 20px;
}
.nav-links li a {
color: white;
text-decoration: none;
font-weight: 500;
transition: color 0.3s ease;
}
.nav-links li a:hover {
color: #ffc107;
}
.progress-bar-wrapper {
background: rgba(255, 255, 255, 0.2);
height: 10px;
border-radius: 20px;
overflow: hidden;
margin: 20px auto;
max-width: 500px;
}
#progress-bar {
height: 100%;
width: 0%;
background: #00c8ff;
transition: width 0.3s ease;
}
/* Quiz layout fixes */
.glass-quiz {
backdrop-filter: blur(12px);
background: rgba(255, 255, 255, 0.08);
border: 1px solid rgba(255, 255, 255, 0.25);
border-radius: 20px;
padding: 50px 30px;
margin: 80px auto;
max-width: 700px;
text-align: center;
box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}
.quiz-card {
padding: 30px;
border-radius: 12px;
margin-top: 20px;
background: rgba(0, 0, 0, 0.3); /* dark blur */
}
.quiz-card h3 {
margin-bottom: 10px;
color: #00c8ff;
}
.quiz-card p {
font-size: 1.2em;
margin-bottom: 20px;
}
.quiz-card label {
display: block;
text-align: left;
margin: 10px auto;
padding: 8px;
background: rgba(255,255,255,0.1);
border-radius: 8px;
cursor: pointer;
}
.quiz-card input[type="radio"] {
margin-right: 10px;
}
.quiz-card button {
background: #00c8ff;
color: white;
border: none;
padding: 10px 25px;
border-radius: 6px;
font-size: 1em;
font-weight: bold;
cursor: pointer;
margin-top: 20px;
transition: background 0.3s ease;
}
.quiz-card button:hover {
background: #0090c5;
}
.feedback {
font-weight: bold;
margin-top: 15px;
}
.feedback.correct { color: #00ff88; }
.feedback.wrong { color: #ff6666; }