-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
126 lines (109 loc) 路 2.22 KB
/
Copy pathstyle.css
File metadata and controls
126 lines (109 loc) 路 2.22 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
body {
font-family: "Poppins", sans-serif;
background: linear-gradient(135deg, #f9c5d1, #fbc2eb, #a6c1ee);
height: 100vh;
margin: 0;
display: flex;
justify-content: center;
align-items: center;
color: #333;
}
.card {
background: #fff;
border-radius: 20px;
box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
padding: 30px;
width: 90%;
max-width: 550px;
text-align: center;
animation: pop 0.6s ease;
}
.hidden {
display: none;
}
input[type="text"],
input[type="password"] {
width: 80%;
padding: 12px;
margin: 10px 0;
border: 2px solid #f9a8d4;
border-radius: 10px;
outline: none;
}
button {
background: linear-gradient(90deg, #ff9a9e, #fad0c4);
border: none;
color: white;
padding: 12px 25px;
border-radius: 20px;
font-weight: bold;
cursor: pointer;
transition: all 0.3s;
}
button:hover {
transform: scale(1.05);
background: linear-gradient(90deg, #a18cd1, #fbc2eb);
}
h1 {
margin-bottom: 20px;
color: #ff66b2;
}
#quiz-form {
text-align: left;
max-height: 400px;
overflow-y: auto;
padding-right: 10px;
}
.question {
background: #fff0f5;
border-radius: 12px;
margin-bottom: 20px;
padding: 15px 20px;
border: 1px solid #ffd1dc;
box-shadow: 0 2px 6px rgba(255, 182, 193, 0.2);
}
.question h3 {
color: #ff4081;
font-size: 16px;
margin-bottom: 10px;
}
label {
display: flex;
align-items: center;
background: #ffffffb0;
border-radius: 8px;
margin: 6px 0;
padding: 8px 10px;
cursor: pointer;
transition: all 0.2s;
border: 1px solid #ffe0ec;
}
label:hover {
background: #ffe6f0;
transform: translateX(5px);
}
input[type="radio"] {
margin-right: 10px;
accent-color: #ff66b2;
transform: scale(1.2);
}
#login-error {
color: #ff004c;
font-weight: bold;
margin-top: 10px;
}
@keyframes pop {
from { transform: scale(0.8); opacity: 0; }
to { transform: scale(1); opacity: 1; }
}
/* Scrollbar style (cute pastel one) */
#quiz-form::-webkit-scrollbar {
width: 8px;
}
#quiz-form::-webkit-scrollbar-thumb {
background: #f9a8d4;
border-radius: 10px;
}
#quiz-form::-webkit-scrollbar-track {
background: #ffe4f1;
}