-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathstyle.css
291 lines (250 loc) · 9.48 KB
/
style.css
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
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
@import url('https://fonts.googleapis.com/css2?family=Kalnia+Glaze&display=swap');
/* Set a maximum width for the main container */
/* Rest of your existing CSS */
.main {
max-width: 1500px;
margin: 0 auto;
background: linear-gradient(135deg, rgb(0, 0, 0) 0%, rgb(0, 0, 0) 100%);
border-radius: 10px;
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
/* Add additional styles here */
.wizard-button {
background-color: #000000; /* A magical purple color */
color: rgb(0, 0, 0); /* Text color */
border: none; /* No border */
padding: 10px 20px; /* Padding around the text */
text-align: center; /* Center the text */
text-decoration: none; /* No underline */
display: inline-block; /* Inline-block for proper spacing */
font-size: 16px; /* Font size */
margin: 4px 2px; /* Margin for spacing */
cursor: pointer; /* Pointer cursor on hover */
border-radius: 12px; /* Rounded corners */
box-shadow: 0 4px 8px rgb(0, 0, 0); /* Shadow effect */
transition: background-color 0.3s, transform 0.3s; /* Smooth transition */
}
.wizard-button:hover {
background-color: #c31ff0; /* Darker purple on hover */
transform: scale(1.05); /* Slightly enlarge on hover */
}
.title-container {
display: flex;
align-items: center;
justify-content: center;
white-space: nowrap;
margin-bottom: 3rem;
}
.title {
font-family: "Kalnia Glaze", sans-serif;
font-size: 2.5rem;
margin: 0;
padding: 0;
color: #000000;
text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}
h1, h2, h3 {
font-family: 'Kalnia Glaze', sans-serif;
}
body {
background-color: #000000; /* Changed to pure black */
background-image:
url("https://www.transparenttextures.com/patterns/stardust.png"),
radial-gradient(circle at top right, rgba(255, 192, 203, 0.1) 0%, transparent 60%),
radial-gradient(white, rgba(255,255,255,.2) 2px, transparent 40px),
radial-gradient(white, rgba(255,255,255,.15) 1px, transparent 30px),
radial-gradient(white, rgba(255,255,255,.1) 2px, transparent 40px),
radial-gradient(rgba(255,255,255,.4), rgba(255,255,255,.1) 2px, transparent 30px);
background-size: 100% 100%, 550px 550px, 350px 350px, 250px 250px, 150px 150px;
background-position: 0 0, 0 0, 40px 60px, 130px 270px, 70px 100px;
background-attachment: fixed;
animation: stars 240s linear infinite;
color: white;
font-family: 'Roboto', sans-serif;
}
@keyframes stars {
0% {
background-position: 0 0, 0 0, 40px 60px, 130px 270px, 70px 100px;
}
100% {
background-position: 0 0, 550px 550px, 590px 610px, 680px 920px, 220px 250px;
}
}
.moon {
position: fixed;
top: 50px;
right: 50px;
width: 100px;
height: 100px;
background-color: #f5f3ce;
border-radius: 50%;
box-shadow: 0 0 20px #f5f3ce;
}
.star {
position: fixed;
width: 2px;
height: 2px;
background: white;
border-radius: 50%;
}
/* Twinkling star animation */
@keyframes twinkle {
0% { opacity: 0; }
50% { opacity: 1; }
100% { opacity: 0; }
}
/* Generate 50 twinkling stars */
.star:nth-child(1) { top: 5%; left: 10%; animation: twinkle 3s infinite; }
.star:nth-child(2) { top: 10%; left: 20%; animation: twinkle 4s infinite; }
.star:nth-child(3) { top: 15%; left: 30%; animation: twinkle 5s infinite; }
.star:nth-child(4) { top: 20%; left: 40%; animation: twinkle 3.5s infinite; }
.star:nth-child(5) { top: 25%; left: 50%; animation: twinkle 4.5s infinite; }
.star:nth-child(6) { top: 30%; left: 60%; animation: twinkle 3.2s infinite; }
.star:nth-child(7) { top: 35%; left: 70%; animation: twinkle 4.7s infinite; }
.star:nth-child(8) { top: 40%; left: 80%; animation: twinkle 3.8s infinite; }
.star:nth-child(9) { top: 45%; left: 90%; animation: twinkle 4.2s infinite; }
.star:nth-child(10) { top: 50%; left: 5%; animation: twinkle 3.3s infinite; }
.star:nth-child(11) { top: 55%; left: 15%; animation: twinkle 4.8s infinite; }
.star:nth-child(12) { top: 60%; left: 25%; animation: twinkle 3.7s infinite; }
.star:nth-child(13) { top: 65%; left: 35%; animation: twinkle 4.3s infinite; }
.star:nth-child(14) { top: 70%; left: 45%; animation: twinkle 3.9s infinite; }
.star:nth-child(15) { top: 75%; left: 55%; animation: twinkle 4.6s infinite; }
.star:nth-child(16) { top: 80%; left: 65%; animation: twinkle 3s infinite; }
.star:nth-child(17) { top: 85%; left: 75%; animation: twinkle 4s infinite; }
.star:nth-child(18) { top: 90%; left: 85%; animation: twinkle 5s infinite; }
.star:nth-child(19) { top: 95%; left: 95%; animation: twinkle 3.5s infinite; }
.star:nth-child(20) { top: 5%; left: 90%; animation: twinkle 4.5s infinite; }
.star:nth-child(21) { top: 10%; left: 80%; animation: twinkle 3.2s infinite; }
.star:nth-child(22) { top: 15%; left: 70%; animation: twinkle 4.7s infinite; }
.star:nth-child(23) { top: 20%; left: 60%; animation: twinkle 3.8s infinite; }
.star:nth-child(24) { top: 25%; left: 50%; animation: twinkle 4.2s infinite; }
.star:nth-child(25) { top: 30%; left: 40%; animation: twinkle 3.3s infinite; }
.star:nth-child(26) { top: 35%; left: 30%; animation: twinkle 4.8s infinite; }
.star:nth-child(27) { top: 40%; left: 20%; animation: twinkle 3.7s infinite; }
.star:nth-child(28) { top: 45%; left: 10%; animation: twinkle 4.3s infinite; }
.star:nth-child(29) { top: 50%; left: 95%; animation: twinkle 3.9s infinite; }
.star:nth-child(30) { top: 55%; left: 85%; animation: twinkle 4.6s infinite; }
.star:nth-child(31) { top: 60%; left: 75%; animation: twinkle 3s infinite; }
.star:nth-child(32) { top: 65%; left: 65%; animation: twinkle 4s infinite; }
.star:nth-child(33) { top: 70%; left: 55%; animation: twinkle 5s infinite; }
.star:nth-child(34) { top: 75%; left: 45%; animation: twinkle 3.5s infinite; }
.star:nth-child(35) { top: 80%; left: 35%; animation: twinkle 4.5s infinite; }
.star:nth-child(36) { top: 85%; left: 25%; animation: twinkle 3.2s infinite; }
.star:nth-child(37) { top: 90%; left: 15%; animation: twinkle 4.7s infinite; }
.star:nth-child(38) { top: 95%; left: 5%; animation: twinkle 3.8s infinite; }
.star:nth-child(39) { top: 5%; left: 85%; animation: twinkle 4.2s infinite; }
.star:nth-child(40) { top: 10%; left: 75%; animation: twinkle 3.3s infinite; }
.star:nth-child(41) { top: 15%; left: 65%; animation: twinkle 4.8s infinite; }
.star:nth-child(42) { top: 20%; left: 55%; animation: twinkle 3.7s infinite; }
.star:nth-child(43) { top: 25%; left: 45%; animation: twinkle 4.3s infinite; }
.star:nth-child(44) { top: 30%; left: 35%; animation: twinkle 3.9s infinite; }
.star:nth-child(45) { top: 35%; left: 25%; animation: twinkle 4.6s infinite; }
.star:nth-child(46) { top: 40%; left: 15%; animation: twinkle 3s infinite; }
.star:nth-child(47) { top: 45%; left: 5%; animation: twinkle 4s infinite; }
.star:nth-child(48) { top: 50%; left: 90%; animation: twinkle 5s infinite; }
.star:nth-child(49) { top: 55%; left: 80%; animation: twinkle 3.5s infinite; }
.star:nth-child(50) { top: 60%; left: 70%; animation: twinkle 4.5s infinite; }
/* Shooting star animation */
.shooting-star {
position: fixed;
left: 50%;
top: 50%;
width: 4px;
height: 4px;
background: #fff;
border-radius: 50%;
box-shadow: 0 0 0 4px rgba(255,255,255,0.1), 0 0 0 8px rgba(255,255,255,0.1), 0 0 20px rgba(255,255,255,1);
animation: shoot 6s linear infinite;
}
.shooting-star::before {
content: "";
position: absolute;
top: 50%;
transform: translateY(-50%);
width: 300px;
height: 1px;
background: linear-gradient(90deg, #fff, transparent);
}
@keyframes shoot {
0% {
transform: rotate(315deg) translateX(0);
opacity: 1;
}
70% {
opacity: 1;
}
100% {
transform: rotate(315deg) translateX(-1000px); /* Move to the left */
opacity: 0;
}
}
.stButton > button {
background-color: #915fe3;
color: white;
border: none;
padding: 10px 20px;
text-align: center;
text-decoration: none;
display: inline-block;
font-size: 16px;
margin: 4px 2px;
cursor: pointer;
border-radius: 12px;
box-shadow: 0 4px 8px rgba(197, 20, 224, 0.2);
transition: background-color 0.3s, transform 0.3s;
}
.stButton > button:hover {
background-color: #c31ff0;
transform: scale(1.05);
}
.sidebar .stButton > button {
width: 100%;
}
.stTextInput > div > div > input {
background-color: rgba(240, 240, 240, 0.1);
color: white;
border: 1px solid rgba(255, 255, 255, 0.2);
border-radius: 5px;
}
/* Additional styles for better readability */
.streamlit-expanderHeader {
color: #ffffff;
font-weight: bold;
}
.stCheckbox > label > div[role="checkbox"] {
border-color: #915fe3;
}
.stCheckbox > label > div[role="checkbox"]::before {
background-color: #915fe3;
}
[data-testid="stSidebar"] {
background-color: rgba(0, 0, 0, 0.5); /* Increased transparency */
backdrop-filter: blur(5px); /* Add a slight blur effect */
border-right: 1px solid rgb(0, 0, 0);
}
[data-testid="stSidebar"] .stTextInput > div > div > input {
background-color: rgb(0, 0, 0);
}
/* Enhance multiselect appearance */
.stMultiSelect > div > div > div {
background-color: rgb(0, 0, 0);
border: 1px solid rgb(0, 0, 0);
}
.stMultiSelect > div > div > div > div {
color: white;
}
/* Style for information and warning messages */
.stAlert {
background-color: rgba(255, 255, 255, 0.1);
color: white;
border-left-color: #915fe3;
}
/* Additional responsive design */
@media (max-width: 768px) {
.main {
padding: 1rem;
}
.title {
font-size: 2rem;
}
}