-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
149 lines (129 loc) · 2.46 KB
/
style.css
File metadata and controls
149 lines (129 loc) · 2.46 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
body {
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
background-color: #0f1923;
color: #fff;
margin: 0;
padding: 20px;
line-height: 1.6;
}
.container {
max-width: 700px;
margin: 0 auto;
padding: 30px;
background-color: #1a2734;
border-radius: 10px;
box-shadow: 0 0 15px rgba(0,0,0,0.3);
}
h1, h2 {
text-align: center;
color: #ff4655;
margin-bottom: 20px;
}
.progress-container {
width: 100%;
background-color: #263544;
border-radius: 5px;
margin: 20px 0;
}
.progress-bar {
height: 10px;
background-color: #ff4655;
border-radius: 5px;
width: 0%;
transition: width 0.3s;
}
.question {
margin-bottom: 20px;
padding: 20px;
background-color: #263544;
border-radius: 6px;
animation: fadeIn 0.5s ease;
}
@keyframes fadeIn {
from { opacity: 0; transform: translateY(10px); }
to { opacity: 1; transform: translateY(0); }
}
.question p {
font-weight: bold;
margin-bottom: 15px;
font-size: 18px;
}
label {
display: block;
margin-bottom: 10px;
padding: 10px;
background-color: #1e2b38;
border-radius: 5px;
transition: background-color 0.3s;
}
label:hover {
background-color: #2a3a4a;
}
input[type="radio"] {
margin-right: 10px;
accent-color: #ff4655;
}
button {
display: block;
margin: 25px auto 0;
background-color: #ff4655;
color: #fff;
padding: 12px 25px;
font-size: 16px;
border: none;
border-radius: 6px;
cursor: pointer;
transition: all 0.3s;
}
button:hover {
background-color: #e03e4c;
transform: translateY(-2px);
}
.hidden {
display: none;
}
.agent-list {
display: flex;
flex-wrap: wrap;
justify-content: center;
gap: 20px;
margin-top: 30px;
}
.agent-card {
background-color: #1e2b38;
padding: 20px;
border-radius: 10px;
text-align: center;
width: 100%;
max-width: 250px;
transition: all 0.3s;
}
.agent-card:hover {
transform: translateY(-5px);
box-shadow: 0 10px 20px rgba(255, 70, 85, 0.2);
}
.agent-card img {
width: 100%;
border-radius: 8px;
margin-bottom: 15px;
border: 2px solid #ff4655;
}
.agent-card h3 {
margin: 10px 0 5px;
color: #ff4655;
}
.agent-card p {
color: #ccc;
font-size: 14px;
}
@media (max-width: 600px) {
.container {
padding: 20px;
}
.question {
padding: 15px;
}
.agent-card {
max-width: 100%;
}
}