-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathIndex.css
More file actions
46 lines (40 loc) · 1.16 KB
/
Index.css
File metadata and controls
46 lines (40 loc) · 1.16 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
body{
font-family: Arial, sans-serif;
background-color: #f8f9fa;
margin: 0;
padding: 0;
}
.splash-screen {
background: linear-gradient(135deg, #4e54c8, #8f94fb);
height: 60vh;
color: white;
transition: opacity 0.5s ease;
display: flex;
justify-content: center;
text-align: center;
}
.question-section {
opacity: 0;
transform: translateY(20px);
transition: all 0.5s ease;
display: none;
}
.active-section {
display: block;
opacity: 1;
transform: translateY(0);
}
.progress-bar {
transition: width 0.5s ease;
}
.question-card {
transition: transform 0.3s ease;
}
.question-card:hover {
transform: translateY(-5px);
}
@keyframes fadeIn {
from { opacity: 0; transform: translateY(20px); }
to { opacity: 1; transform: translateY(0); }
}
.fade-in { animation: fadeIn 0.5s ease; }