-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
395 lines (358 loc) · 19.7 KB
/
Copy pathstyle.css
File metadata and controls
395 lines (358 loc) · 19.7 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
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
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
@import url('https://fonts.googleapis.com/css2?family=DM+Serif+Display:ital@0;1&family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;0,9..40,600;1,9..40,300&display=swap');
:root {
--pin-red: #E60023;
--pin-red-dark: #AD081B;
--pin-red-light: #FF2B45;
--dark-bg: #0a0a0a;
--dark-surface: #141414;
--dark-card: #1a1a1a;
--dark-border: #2a2a2a;
--dark-border-light: #333;
--text-primary: #f5f5f5;
--text-secondary: #a0a0a0;
--text-muted: #666;
--accent-warm: #FF6B35;
--accent-gold: #F5A623;
--app-bg: #0a0a0a;
--app-text: #f5f5f5;
--app-border: #2a2a2a;
--app-primary: #E60023;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
body { background-color: var(--dark-bg); color: var(--text-primary); font-family: 'DM Sans', sans-serif; -webkit-font-smoothing: antialiased; }
/* ─── CURSOR ─── */
*, *::before, *::after { cursor: default; }
a, button, [role="button"], select, input[type="file"], input[type="submit"] { cursor: pointer !important; }
/* ─── SCROLLBAR ─── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--dark-bg); }
::-webkit-scrollbar-thumb { background: #333; border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: #444; }
/* ─── UI BUTTONS ─── */
.btn-primary, .btn-secondary, .btn-large {
padding: 11px 24px; border-radius: 100px; border: none; cursor: pointer !important;
font-weight: 600; font-family: 'DM Sans', sans-serif; transition: all 0.25s cubic-bezier(0.34, 1.56, 0.64, 1); letter-spacing: 0.01em; font-size: 0.9rem;
}
.btn-primary { background: var(--pin-red); color: white; box-shadow: 0 4px 20px rgba(230, 0, 35, 0.35); }
.btn-primary:hover { background: var(--pin-red-light); transform: translateY(-2px); box-shadow: 0 8px 30px rgba(230, 0, 35, 0.5); }
.btn-secondary { background: var(--dark-card); color: var(--text-primary); border: 1px solid var(--dark-border-light); }
.btn-secondary:hover { background: #222; border-color: #555; transform: translateY(-1px); }
.btn-large {
font-size: 1rem; padding: 16px 40px; display: inline-block; text-decoration: none;
background: var(--pin-red); color: white; letter-spacing: 0.02em;
box-shadow: 0 8px 32px rgba(230, 0, 35, 0.4); border-radius: 100px;
transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.btn-large:hover { background: var(--pin-red-light); transform: translateY(-3px) scale(1.02); box-shadow: 0 16px 48px rgba(230, 0, 35, 0.55); }
/* ─── DONATE / IG BUTTONS ─── */
.creator-links { display: flex; justify-content: center; gap: 12px; margin-top: 32px; padding-top: 24px; border-top: 1px solid var(--dark-border-light); }
.btn-donate {
background: linear-gradient(135deg, #f59e0b, #f97316); color: white;
padding: 10px 20px; border-radius: 100px; text-decoration: none;
font-size: 0.875rem; font-weight: 600; font-family: 'DM Sans', sans-serif;
display: flex; align-items: center; gap: 8px; transition: all 0.25s ease;
box-shadow: 0 4px 16px rgba(249, 115, 22, 0.3);
}
.btn-donate:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(249, 115, 22, 0.5); }
.btn-ig {
background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
color: white; padding: 10px 20px; border-radius: 100px; text-decoration: none;
font-size: 0.875rem; font-weight: 600; font-family: 'DM Sans', sans-serif;
display: flex; align-items: center; gap: 8px; transition: all 0.25s ease;
box-shadow: 0 4px 16px rgba(220, 39, 67, 0.3);
}
.btn-ig:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(220, 39, 67, 0.5); }
/* ─────────────────────────────────────────
LANDING PAGE
───────────────────────────────────────── */
.landing-page { overflow-x: hidden; }
/* NAVBAR */
.navbar {
display: flex; justify-content: space-between; align-items: center;
padding: 18px 6%; background: rgba(10,10,10,0.85);
backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
border-bottom: 1px solid var(--dark-border);
position: sticky; top: 0; z-index: 100;
animation: slideDown 0.6s ease both;
}
@keyframes slideDown { from { transform: translateY(-100%); opacity: 0; } to { transform: translateY(0); opacity: 1; } }
.logo { font-size: 1.4rem; color: var(--text-primary); font-family: 'DM Serif Display', serif; letter-spacing: -0.02em; }
.logo strong { color: var(--pin-red); font-family: 'DM Serif Display', serif; }
/* HERO */
.hero {
min-height: 100vh; display: grid; grid-template-columns: 1fr 1fr;
align-items: center; padding: 80px 6%;
background: var(--dark-bg);
position: relative; overflow: hidden;
gap: 60px;
}
/* Background decoration */
.hero::before {
content: ''; position: absolute; top: -200px; right: -200px;
width: 700px; height: 700px; border-radius: 50%;
background: radial-gradient(circle, rgba(230,0,35,0.08) 0%, transparent 70%);
pointer-events: none;
}
.hero::after {
content: ''; position: absolute; bottom: -150px; left: -100px;
width: 500px; height: 500px; border-radius: 50%;
background: radial-gradient(circle, rgba(245,166,35,0.05) 0%, transparent 70%);
pointer-events: none;
}
/* Hero Left */
.hero-content { position: relative; z-index: 2; animation: fadeInLeft 0.8s ease 0.2s both; }
@keyframes fadeInLeft { from { opacity: 0; transform: translateX(-40px); } to { opacity: 1; transform: translateX(0); } }
.badge {
display: inline-flex; align-items: center; gap: 6px;
background: rgba(230, 0, 35, 0.12); color: #ff6b7a;
padding: 6px 14px; border-radius: 100px; font-size: 0.8rem; font-weight: 600;
border: 1px solid rgba(230, 0, 35, 0.25); margin-bottom: 28px;
letter-spacing: 0.05em; text-transform: uppercase;
}
.badge::before { content: '●'; font-size: 6px; animation: pulse 2s infinite; }
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.3; } }
.hero h1 {
font-family: 'DM Serif Display', serif;
font-size: clamp(2.8rem, 5vw, 4.2rem);
line-height: 1.1; color: var(--text-primary);
margin-bottom: 20px; letter-spacing: -0.02em;
}
.highlight {
color: var(--pin-red);
font-style: italic;
position: relative;
}
.hero p {
font-size: 1.05rem; color: var(--text-secondary);
line-height: 1.75; margin-bottom: 36px; max-width: 520px;
font-weight: 300;
}
.hero-buttons { display: flex; gap: 14px; align-items: center; flex-wrap: wrap; }
/* Hero Right — Pinterest Moodboard Grid */
.hero-visual { position: relative; z-index: 2; animation: fadeInRight 0.8s ease 0.4s both; }
@keyframes fadeInRight { from { opacity: 0; transform: translateX(40px); } to { opacity: 1; transform: translateX(0); } }
.pin-grid {
display: grid;
grid-template-columns: repeat(3, 1fr);
grid-auto-rows: 80px;
gap: 12px;
}
.pin-card {
border-radius: 16px;
overflow: hidden;
position: relative;
transition: transform 0.3s cubic-bezier(0.34,1.56,0.64,1), box-shadow 0.3s ease;
cursor: pointer !important;
border: 1px solid var(--dark-border);
}
.pin-card:hover { transform: translateY(-4px) scale(1.02); box-shadow: 0 20px 40px rgba(0,0,0,0.5); z-index: 5; }
.pin-card-inner { width: 100%; height: 100%; display: flex; flex-direction: column; justify-content: flex-end; padding: 14px; }
.pin-card-tag { font-size: 0.7rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; color: rgba(255,255,255,0.9); background: rgba(0,0,0,0.3); display: inline-block; padding: 3px 8px; border-radius: 100px; backdrop-filter: blur(4px); width: fit-content; }
.pin-card-title { font-size: 0.85rem; font-weight: 500; color: white; margin-top: 4px; text-shadow: 0 2px 8px rgba(0,0,0,0.8); line-height: 1.3; }
/* Individual card spans and colors */
.pc-1 { grid-row: span 3; background: linear-gradient(160deg, #1a0a0e 0%, #8B1a2a 100%); }
.pc-2 { grid-row: span 2; background: linear-gradient(135deg, #0d1117 0%, #1a2744 100%); }
.pc-3 { grid-row: span 2; background: linear-gradient(135deg, #0f1a0a 0%, #1a3a1a 100%); }
.pc-4 { grid-row: span 3; background: linear-gradient(160deg, #1a1500 0%, #4a3500 100%); }
.pc-5 { grid-row: span 2; background: linear-gradient(135deg, #100a1a 0%, #2d1a4a 100%); }
.pc-6 { grid-row: span 3; background: linear-gradient(160deg, #0d1a1a 0%, #0a3a3a 100%); }
.pc-7 { grid-row: span 2; background: linear-gradient(135deg, #1a0d00 0%, #4a2000 100%); }
.pc-8 { grid-row: span 2; background: linear-gradient(135deg, #0a0d1a 0%, #1a2030 100%); }
/* Card decorative elements */
.pin-card::after {
content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0;
background: linear-gradient(to bottom, transparent 40%, rgba(0,0,0,0.6) 100%);
pointer-events: none;
}
/* Stats row */
.stats-row {
display: flex; gap: 32px; margin-top: 48px;
padding-top: 32px; border-top: 1px solid var(--dark-border);
animation: fadeInUp 0.8s ease 0.6s both;
}
@keyframes fadeInUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
.stat { text-align: left; }
.stat-number { font-family: 'DM Serif Display', serif; font-size: 2rem; color: var(--text-primary); line-height: 1; }
.stat-number span { color: var(--pin-red); }
.stat-label { font-size: 0.8rem; color: var(--text-muted); margin-top: 4px; font-weight: 400; }
/* Feature Cards Row */
.features-section {
padding: 80px 6%; background: var(--dark-surface);
border-top: 1px solid var(--dark-border);
}
.features-grid {
display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; max-width: 1200px; margin: 48px auto 0;
}
.feature-card {
background: var(--dark-card); border: 1px solid var(--dark-border);
border-radius: 20px; padding: 32px 28px;
transition: all 0.3s ease; position: relative; overflow: hidden;
}
.feature-card::before {
content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
background: linear-gradient(90deg, var(--pin-red), var(--accent-warm));
transform: scaleX(0); transform-origin: left; transition: transform 0.3s ease;
}
.feature-card:hover { border-color: var(--dark-border-light); transform: translateY(-4px); box-shadow: 0 20px 40px rgba(0,0,0,0.4); }
.feature-card:hover::before { transform: scaleX(1); }
.feature-icon { font-size: 2rem; margin-bottom: 16px; display: block; }
.feature-title { font-family: 'DM Serif Display', serif; font-size: 1.3rem; margin-bottom: 10px; color: var(--text-primary); }
.feature-desc { font-size: 0.9rem; color: var(--text-secondary); line-height: 1.7; font-weight: 300; }
.section-eyebrow { font-size: 0.8rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.1em; color: var(--pin-red); margin-bottom: 12px; }
.section-title { font-family: 'DM Serif Display', serif; font-size: clamp(2rem, 3.5vw, 2.8rem); color: var(--text-primary); line-height: 1.2; }
/* CTA Section */
.cta-section {
padding: 100px 6%; text-align: center; background: var(--dark-bg);
position: relative; overflow: hidden;
}
.cta-section::before {
content: ''; position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
width: 600px; height: 600px; border-radius: 50%;
background: radial-gradient(circle, rgba(230,0,35,0.07) 0%, transparent 70%);
pointer-events: none;
}
.cta-box {
max-width: 640px; margin: 0 auto; position: relative; z-index: 2;
background: var(--dark-surface); border: 1px solid var(--dark-border-light);
border-radius: 28px; padding: 60px 48px;
}
.cta-box h2 { font-family: 'DM Serif Display', serif; font-size: 2.5rem; margin-bottom: 16px; line-height: 1.2; }
.cta-box p { color: var(--text-secondary); margin-bottom: 36px; font-size: 1rem; line-height: 1.7; font-weight: 300; }
/* Footer */
.landing-footer {
padding: 30px 6%; border-top: 1px solid var(--dark-border);
display: flex; justify-content: space-between; align-items: center;
background: var(--dark-surface); flex-wrap: wrap; gap: 16px;
}
.footer-logo { font-family: 'DM Serif Display', serif; font-size: 1.2rem; }
.footer-logo strong { color: var(--pin-red); }
.footer-text { font-size: 0.85rem; color: var(--text-muted); }
/* ─────────────────────────────────────────
EDITOR PAGE
───────────────────────────────────────── */
.editor-page { background: var(--dark-bg); }
.editor-nav {
display: flex; justify-content: space-between; align-items: center;
padding: 14px 3%; background: var(--dark-surface);
border-bottom: 1px solid var(--dark-border);
position: sticky; top: 0; z-index: 50;
}
.editor-container { display: flex; height: calc(100vh - 65px); }
/* Form Section */
.form-section {
width: 360px; min-width: 320px; background: var(--dark-surface);
padding: 24px; overflow-y: auto; border-right: 1px solid var(--dark-border);
flex-shrink: 0;
}
.form-section h3 {
margin-top: 24px; margin-bottom: 14px; color: var(--text-primary);
font-size: 0.75rem; font-weight: 600; text-transform: uppercase;
letter-spacing: 0.12em; font-family: 'DM Sans', sans-serif;
display: flex; align-items: center; gap: 8px;
}
.form-section h3::before { content: ''; display: block; width: 3px; height: 14px; background: var(--pin-red); border-radius: 2px; }
.form-section hr { border: none; border-top: 1px solid var(--dark-border); margin: 20px 0; }
.input-row { display: flex; gap: 12px; }
.input-row .input-group { flex: 1; }
.input-group { margin-bottom: 14px; }
.input-group label {
display: block; font-size: 0.78rem; font-weight: 500;
margin-bottom: 6px; color: var(--text-secondary);
}
.input-group input,
.input-group textarea,
.input-group select {
width: 100%; padding: 9px 12px; border: 1px solid var(--dark-border);
border-radius: 8px; outline: none; background: var(--dark-card);
font-family: 'DM Sans', sans-serif; font-size: 0.875rem;
color: var(--text-primary); transition: border-color 0.2s ease, box-shadow 0.2s ease;
-webkit-appearance: none; appearance: none;
}
.input-group input:focus,
.input-group textarea:focus,
.input-group select:focus {
border-color: var(--pin-red); background: var(--dark-card);
box-shadow: 0 0 0 3px rgba(230, 0, 35, 0.12);
}
.input-group select {
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23666' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
background-repeat: no-repeat; background-position: right 12px center;
padding-right: 36px;
}
.input-group input::placeholder, .input-group textarea::placeholder { color: #444; }
.control-panel {
background: var(--dark-card); padding: 16px; border-radius: 12px;
border: 1px solid var(--dark-border); margin-bottom: 4px;
}
.control-panel h3 { margin-top: 0; }
/* Preview Section */
.preview-section {
flex: 1; padding: 40px; overflow-y: auto;
display: flex; justify-content: center; background: #0f0f0f;
background-image: radial-gradient(circle at 1px 1px, rgba(255,255,255,0.03) 1px, transparent 0);
background-size: 24px 24px;
}
.a4-paper {
width: 210mm; min-height: 297mm;
background: white; box-shadow: 0 20px 60px rgba(0,0,0,0.6);
position: relative; overflow: hidden;
border-radius: 2px;
}
/* Sidebar Support */
.sidebar-support {
margin-top: 24px; padding: 16px; background: var(--dark-card);
border: 1px dashed var(--dark-border-light); border-radius: 12px; text-align: center;
}
.sidebar-support p { font-size: 0.8rem; color: var(--text-muted); margin-bottom: 10px; }
/* ─── CV THEME COLORS ─── */
.theme-blue { --cv-color: #2563eb; --cv-text-light: #eff6ff; }
.theme-dark { --cv-color: #1e293b; --cv-text-light: #f8fafc; }
.theme-emerald { --cv-color: #059669; --cv-text-light: #ecfdf5; }
.theme-red { --cv-color: #dc2626; --cv-text-light: #fef2f2; }
.theme-purple { --cv-color: #7c3aed; --cv-text-light: #f5f3ff; }
/* ─── CV LAYOUTS ─── */
.layout-sidebar { display: flex; }
.layout-sidebar .cv-left { width: 35%; background: var(--cv-color); color: var(--cv-text-light); padding: 40px 30px; }
.layout-sidebar .cv-right { width: 65%; padding: 40px 30px; background: white; }
.layout-sidebar #cvPhoto { width: 150px; height: 150px; border-radius: 50%; object-fit: cover; border: 4px solid rgba(255,255,255,0.2); margin-bottom: 30px; display: block; }
.layout-sidebar .header-name h1 { font-size: 2.5rem; color: #0f172a; line-height: 1.1; margin-bottom: 5px; font-family: 'DM Serif Display', serif; }
.layout-sidebar .header-name h2 { font-size: 1.2rem; color: var(--cv-color); font-weight: 400; margin-bottom: 30px; }
.layout-header { display: block; }
.layout-header .cv-left { display: flex; justify-content: space-around; background: var(--cv-color); color: var(--cv-text-light); padding: 20px; text-align: center; }
.layout-header #cvPhoto { position: absolute; top: 20px; left: 40px; width: 100px; height: 100px; border-radius: 10px; object-fit: cover; }
.layout-header .cv-right { padding: 40px; padding-top: 20px; }
.layout-header .header-name { text-align: right; padding-bottom: 20px; border-bottom: 3px solid var(--cv-color); margin-bottom: 20px; }
.layout-header .header-name h1 { font-size: 3rem; color: var(--cv-color); font-family: 'DM Serif Display', serif; }
.layout-minimalist { display: block; padding: 40px; }
.layout-minimalist .cv-left { color: #333; margin-bottom: 20px; border-bottom: 1px solid #ccc; padding-bottom: 10px; display: flex; justify-content: space-between; }
.layout-minimalist .cv-right { padding: 0; }
.layout-minimalist #cvPhoto { width: 100px; height: 100px; border-radius: 50%; object-fit: cover; float: left; margin-right: 20px; }
.layout-minimalist .header-name h1 { font-size: 2.5rem; color: #111; font-family: 'DM Serif Display', serif; }
.layout-minimalist .header-name h2 { font-size: 1.2rem; color: #555; margin-bottom: 20px; }
.layout-minimalist .cv-section h3 { color: var(--cv-color); border-bottom: 2px solid var(--cv-color); display: inline-block; margin-bottom: 15px; }
/* ─── CV COMMON ELEMENTS ─── */
.cv-section { margin-bottom: 25px; }
.layout-sidebar .cv-section h3 { color: #0f172a; text-transform: uppercase; font-size: 1rem; letter-spacing: 0.05em; border-bottom: 2px solid var(--cv-color); padding-bottom: 5px; margin-bottom: 15px; }
.contact-box h4, .skills-box h4 { text-transform: uppercase; font-size: 0.8rem; letter-spacing: 0.1em; margin-bottom: 10px; border-bottom: 1px solid rgba(255,255,255,0.3); padding-bottom: 5px; margin-top: 20px; }
.contact-box p { font-size: 0.85rem; margin-bottom: 8px; word-break: break-all; }
.skills-box ul { list-style-type: none; padding: 0; }
.skills-box ul li { font-size: 0.9rem; margin-bottom: 8px; position: relative; padding-left: 15px; }
.skills-box ul li::before { content: "•"; position: absolute; left: 0; }
.timeline-item { margin-bottom: 15px; }
.timeline-item h4 { font-size: 1rem; color: #1e293b; }
.timeline-item .date { font-size: 0.85rem; color: var(--cv-color); font-weight: 600; display: block; margin-bottom: 5px; }
.timeline-item p { font-size: 0.9rem; color: #475569; line-height: 1.6; }
.cv-section > p { font-size: 0.9rem; color: #475569; line-height: 1.6; }
/* ─── RESPONSIVE ─── */
@media (max-width: 900px) {
.editor-container { flex-direction: column; overflow: visible; }
.form-section { width: 100%; min-width: 0; height: auto; overflow: visible; }
.preview-section { width: 100%; height: auto; overflow: visible; padding: 24px; }
.a4-paper { transform: scale(0.75); transform-origin: top center; margin-bottom: -250px; }
}
@media (max-width: 768px) {
.hero { grid-template-columns: 1fr; padding: 60px 5%; }
.hero-visual { display: none; }
.features-grid { grid-template-columns: 1fr; }
.stats-row { gap: 20px; }
}