-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
212 lines (188 loc) · 3.58 KB
/
Copy pathstyle.css
File metadata and controls
212 lines (188 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
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
/* Basic Reset and Setup */
html,
body {
margin: 0;
padding: 0;
width: 100%;
height: 100%;
overflow: hidden;
font-family: sans-serif;
}
#container {
width: 100%;
height: 100vh;
background-color: black;
position: relative;
}
/* UI Overlay Styles */
.ui-overlay {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
pointer-events: none;
}
.header-container {
position: absolute;
top: 32px;
left: 50%;
transform: translateX(-50%);
text-align: center;
z-index: 10;
}
#main-title {
font-size: 3.75rem;
font-weight: bold;
background: linear-gradient(to right, #ec4899, #9333ea, #06b6d4);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
text-shadow: 0 4px 6px rgba(0, 0, 0, 0.4);
animation: pulse 1.5s infinite alternate;
}
#subtitle {
font-size: 1.25rem;
color: #67e8f9;
margin-top: 300px;
text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}
.upload-container {
position: absolute;
top: 32px;
right: 32px;
z-index: 10;
/* This container is now essentially empty in HTML, so its styling isn't critical for functionality. */
/* Keeping it for structural integrity in case of future additions */
pointer-events: none; /* No clickable elements inside it now */
}
/* Removed styles for #upload-button and #surprise-upload-button as they are no longer in HTML */
.hidden-input {
display: none;
}
/* Message & Surprise Box Styles */
.message-container {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
display: flex;
align-items: center;
justify-content: center;
z-index: 20;
pointer-events: none;
animation: fadeIn 1s forwards;
}
.message-box,
.surprise-box {
position: relative;
background-image: linear-gradient(to bottom right, #581c87, #831843);
opacity: 0.95;
padding: 40px;
border-radius: 24px;
box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
max-width: 512px;
margin: 0 16px;
border: 4px solid #facc15;
transform: scale(1);
animation: bounce 2s infinite;
pointer-events: all;
}
.surprise-box {
max-width: 600px;
padding: 30px;
}
.surprise-image {
max-width: 100%;
height: 40vh;
border-radius: 15px;
border: 3px solid #db2777;
margin: 20px 0;
box-shadow: 0 0 20px rgba(255, 105, 180, 0.7);
}
.surprise-text {
font-size: 1.2rem;
color: #fcd34d;
font-style: italic;
}
.close-button {
position: absolute;
top: 10px;
right: 15px;
font-size: 2.5rem;
color: #fcd34d;
background: none;
border: none;
cursor: pointer;
line-height: 1;
padding: 0;
text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
transition: transform 0.2s ease-in-out;
}
.close-button:hover {
transform: scale(1.2) rotate(5deg);
color: #fff;
}
.wish-title {
font-size: 2.25rem;
font-weight: bold;
color: #fcd34d;
margin-bottom: 24px;
text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}
.wish-text {
font-size: 1.5rem;
color: white;
line-height: 1.6;
font-weight: 600;
}
.wish-icons {
margin-top: 32px;
font-size: 3rem;
animation: pulse 1.5s infinite alternate;
}
/* Music Notice */
.music-notice {
position: absolute;
bottom: 32px;
left: 50%;
transform: translateX(-50%);
text-align: center;
z-index: 10;
}
.music-notice p {
color: #67e8f9;
font-size: 1.125rem;
margin-bottom: 8px;
}
/* Helper Class */
.hidden {
display: none !important;
}
/* Keyframe Animations */
@keyframes pulse {
0%,
100% {
opacity: 1;
}
50% {
opacity: 0.8;
}
}
@keyframes fadeIn {
from {
opacity: 0;
}
to {
opacity: 1;
}
}
@keyframes bounce {
0%,
100% {
transform: scale(1);
}
50% {
transform: scale(1.03);
}
}