-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcontact.css
More file actions
224 lines (206 loc) · 3.76 KB
/
contact.css
File metadata and controls
224 lines (206 loc) · 3.76 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
213
214
215
216
217
218
219
220
221
222
223
224
/* Reset and base styles */
html,
body {
margin: 0;
padding: 0;
height: 100%;
width: 100%;
background-color: #f7b6c8; /* Pink background */
font-family: "Helvetica Neue", sans-serif;
overflow-x: hidden;
position: relative;
}
/* Navbar styles */
.navbar-container {
position: fixed;
top: 0;
left: 0;
width: 100%;
background-color: rgba(255, 255, 255, 0.7);
backdrop-filter: blur(10px);
display: flex;
align-items: center;
justify-content: space-between;
padding: 0.5rem 1.5rem;
z-index: 10;
box-sizing: border-box;
}
.podcast-name {
font-weight: 900;
font-size: 1.5rem;
color: #ff69b4;
text-decoration: none;
}
.nav-links {
list-style: none;
margin: 0;
padding: 0;
display: flex;
gap: 1.2rem;
}
.nav-links li a {
text-decoration: none;
color: black;
font-weight: 600;
font-size: 1rem;
transition: color 0.3s ease;
}
.nav-links li a:hover {
color: #ff69b4;
}
/* Container for main content */
.container {
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
width: 100%;
padding-top: 60px;
position: relative;
z-index: 5;
box-sizing: border-box;
}
.content {
display: flex;
flex-direction: column;
align-items: center;
width: 100%;
max-width: 400px;
padding: 20px;
}
/* Main title */
h1 {
font-size: clamp(2rem, 8vw, 3rem);
font-weight: 900;
letter-spacing: 0.05em;
color: #fce87d;
margin-bottom: 30px;
text-align: center;
}
/* Card and form styling */
.card {
background: transparent;
width: 100%;
padding: 20px;
display: flex;
flex-direction: column;
gap: 1rem;
}
/* Input container styling */
.input__container {
display: flex;
flex-direction: column;
gap: 6px;
width: 100%;
}
.input__label {
font-weight: bold;
font-size: 0.9em;
color: black;
text-transform: uppercase;
}
.input {
border: none;
outline: none;
width: 100%;
padding: 0.6em 0.9em;
border-radius: 20px;
background: #fff;
transition: background 300ms, color 300ms;
}
.input:hover,
.input:focus {
background: #fff;
color: black;
}
textarea.input {
min-height: 100px;
resize: vertical;
}
/* Submit button */
form button {
background-color: #fce87d;
color: black;
font-weight: 800;
cursor: pointer;
transition: all 0.3s ease;
width: 100%;
padding: 14px 20px;
border-radius: 30px;
border: none;
font-size: 1.1rem;
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
margin-top: 20px;
}
form button:hover {
background-color: #ffcc00;
transform: translateY(-2px);
}
/* Blob background effect */
.blob {
position: absolute;
width: 500px;
height: 500px;
background: radial-gradient(
circle at 30% 30%,
#ffcc00 0%,
#ff0099 50%,
#6e00ff 100%
);
opacity: 0.8;
animation: blobWiggle 60s ease-in-out infinite, blobRotate 60s linear infinite;
z-index: 0;
mix-blend-mode: normal;
border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
transition: background 1s ease-in-out, border-radius 1s ease-in-out;
}
.blob:nth-of-type(1) {
top: 5%;
left: 5%;
animation-delay: 0s;
}
.blob:nth-of-type(2) {
top: 25%;
left: 75%;
background: radial-gradient(
circle at 70% 40%,
#ff9900 0%,
#ff00cc 50%,
#6600ff 100%
);
animation-delay: 5s;
}
.blob:nth-of-type(3) {
top: 80%;
left: 10%;
background: radial-gradient(
circle at 20% 60%,
#ff8800 0%,
#ff33cc 50%,
#5500ff 100%
);
animation-delay: 10s;
}
.blob:nth-of-type(4) {
top: 10%;
left: 90%;
background: radial-gradient(
circle at 50% 70%,
#ffaa00 0%,
#ff66cc 50%,
#4400ff 100%
);
animation-delay: 15s;
}
.blob:nth-of-type(5) {
top: 60%;
left: 5%;
background: radial-gradient(
circle at 30% 80%,
#ffdd00 0%,
#ff44cc 50%,
#3300ff 100%
);
animation-delay: 20s;
}
/* Add more if you have up to blob 10 */