-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
189 lines (165 loc) · 3.58 KB
/
Copy pathstyles.css
File metadata and controls
189 lines (165 loc) · 3.58 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
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
body {
font-family: Arial, sans-serif;
background-color: #2c3441;
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
margin: 0;
position: relative;
background: rgba(44, 52, 65, 0.8);
}
/* Add blur effect to background */
body::before {
content: '';
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: rgba(44, 52, 65, 0.8); /* Same as #2c3441 but with opacity */
backdrop-filter: blur(10px);
z-index: -1;
}
.container {
background-color: #1f2633;
color: #fff;
padding: 20px;
border-radius: 10px;
width: 90%;
max-width: 400px;
box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.3);
border: 1px solid rgba(255, 255, 255, 0.1);
position: relative;
z-index: 1;
backdrop-filter: blur(5px);
}
.login-form {
display: flex;
flex-direction: column;
gap: 15px;
}
.input-group {
display: flex;
flex-direction: column;
gap: 5px;
}
input {
padding: 10px;
border: 1px solid rgba(255, 255, 255, 0.1);
border-radius: 5px;
background-color: rgba(44, 52, 65, 0.8);
color: white;
font-size: 16px;
transition: all 0.3s ease;
}
input:focus {
outline: none;
border-color: rgba(255, 255, 255, 0.3);
background-color: rgba(44, 52, 65, 0.9);
}
.submit-btn {
background-color: #007bff;
border: none;
padding: 10px 15px;
color: #fff;
border-radius: 5px;
cursor: pointer;
font-size: 16px;
margin-top: 15px;
transition: all 0.3s ease;
}
.submit-btn:hover {
background-color: #0056b3;
transform: translateY(-1px);
}
.submit-btn:disabled {
background-color: #4a5568;
cursor: not-allowed;
transform: none;
}
.progress-bar {
background-color: #3b3f50;
border-radius: 50px;
position: relative;
height: 15px;
width: 100%;
margin-bottom: 20px;
overflow: hidden;
}
.progress-bar-inner {
background: linear-gradient(90deg, #f05d61, #e463d5);
height: 100%;
width: 100%;
position: absolute;
left: 0;
transition: width 0.5s linear;
}
.question-container {
margin: 20px 0;
}
.question-container h2 {
font-size: 18px;
margin-bottom: 15px;
color: rgba(255, 255, 255, 0.9);
}
.options {
list-style: none;
padding: 0;
}
.options li {
margin: 10px 0;
}
.options label {
display: block;
background: rgba(44, 52, 65, 0.8);
padding: 10px 15px;
border-radius: 5px;
cursor: pointer;
transition: all 0.3s ease;
border: 1px solid rgba(255, 255, 255, 0.1);
}
.options label:hover {
background: rgba(44, 52, 65, 0.9);
transform: translateX(5px);
}
.options input {
display: none;
}
.options input:checked + label {
background-color: #f05d61;
border-color: rgba(255, 255, 255, 0.2);
transform: translateX(5px);
}
.timer {
text-align: center;
font-size: 24px;
margin-bottom: 15px;
color: #f05d61;
font-weight: bold;
text-shadow: 0 0 10px rgba(240, 93, 97, 0.3);
}
.hidden {
display: none;
}
/* Welcome heading style */
h2 {
color: rgba(255, 255, 255, 0.9);
margin-bottom: 20px;
text-align: center;
font-size: 24px;
}
/* Add subtle animations */
@keyframes fadeIn {
from {
opacity: 0;
transform: translateY(-10px);
}
to {
opacity: 1;
transform: translateY(0);
}
}
.container {
animation: fadeIn 0.5s ease-out;
}