Anne-Charlotte commited on
Commit
5c95903
·
verified ·
1 Parent(s): 1656cfa

Update style.css

Browse files
Files changed (1) hide show
  1. style.css +90 -53
style.css CHANGED
@@ -1,16 +1,19 @@
1
  :root {
2
- --bg-primary: #0a0e1a;
3
- --bg-secondary: #141824;
4
- --bg-card: #1a1f2e;
5
- --text-primary: #e8eaed;
6
- --text-secondary: #9aa0a8;
 
 
7
  --accent-blue: #3BB0D1;
8
  --accent-cyan: #2E4787;
9
  --accent-purple: #8b5cf6;
10
- --border-color: rgba(255, 255, 255, 0.1);
 
11
  --hover-bg: rgba(59, 130, 246, 0.1);
12
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.3);
13
- --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.5);
14
  }
15
 
16
  * {
@@ -36,7 +39,7 @@ body {
36
  /* Header */
37
  .header {
38
  border-bottom: 1px solid var(--border-color);
39
- background: rgba(26, 31, 46, 0.5);
40
  backdrop-filter: blur(10px);
41
  }
42
 
@@ -64,7 +67,7 @@ body {
64
  .title {
65
  font-size: 2rem;
66
  font-weight: bold;
67
- background: linear-gradient(to right, var(--accent-blue), var(--accent-cyan));
68
  -webkit-background-clip: text;
69
  -webkit-text-fill-color: transparent;
70
  background-clip: text;
@@ -111,7 +114,7 @@ body {
111
  .intro-title {
112
  font-size: 2.5rem;
113
  font-weight: bold;
114
- background: linear-gradient(to right, var(--accent-blue), var(--accent-cyan), var(--accent-blue));
115
  -webkit-background-clip: text;
116
  -webkit-text-fill-color: transparent;
117
  background-clip: text;
@@ -142,11 +145,10 @@ body {
142
  top: 1.5rem;
143
  left: 1.5rem;
144
  z-index: 10;
145
- background: #2E4787;
146
  backdrop-filter: blur(10px);
147
  padding: 0.75rem 1.5rem;
148
  border-radius: 12px;
149
- box-shadow: var(--shadow-sm);
150
  }
151
 
152
  .step-counter-text {
@@ -202,7 +204,7 @@ body {
202
  /* Controls */
203
  .controls {
204
  padding: 2rem;
205
- background: linear-gradient(to top, var(--bg-card), rgba(26, 31, 46, 0.8));
206
  border-top: 1px solid var(--border-color);
207
  }
208
 
@@ -232,13 +234,13 @@ body {
232
 
233
  .btn-secondary {
234
  background: var(--bg-secondary);
235
- color: var(--text-primary);
236
  border: 1px solid rgba(255, 255, 255, 0.1);
237
  }
238
 
239
  .btn-secondary:hover:not(:disabled) {
240
- background: rgba(20, 24, 36, 0.8);
241
- border-color: rgba(59, 130, 246, 0.5);
242
  }
243
 
244
  .btn-secondary .icon-left {
@@ -250,15 +252,15 @@ body {
250
  }
251
 
252
  .btn-primary {
253
- background: var(--accent-blue);
254
- color: var(--text-primary);
255
- border: 1px solid rgba(59, 130, 246, 0.5);
256
- box-shadow: 0 0 40px rgba(59, 130, 246, 0.2);
257
  }
258
 
259
  .btn-primary:hover:not(:disabled) {
260
- background: rgba(59, 130, 246, 0.9);
261
- border-color: var(--accent-cyan);
 
262
  }
263
 
264
  .btn-primary .icon-right {
@@ -307,7 +309,7 @@ body {
307
 
308
  .indicator.active {
309
  width: 48px;
310
- background: var(--accent-blue);
311
  box-shadow: 0 0 40px rgba(59, 130, 246, 0.2);
312
  }
313
 
@@ -322,59 +324,88 @@ body {
322
 
323
  .progress-fill {
324
  height: 100%;
325
- background: linear-gradient(to right, var(--accent-blue), var(--accent-cyan));
326
  transition: width 0.5s ease-out;
327
  border-radius: 9999px;
328
  }
329
-
330
- /* Tips Section */
331
- .tips-grid {
332
- display: grid;
333
- grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
334
- gap: 1.5rem;
335
  margin-top: 3rem;
 
 
 
 
 
 
336
  }
337
 
338
- .tip-card {
339
- background: var(--bg-card);
340
- border-radius: 12px;
341
- padding: 1.5rem;
342
- border: 1px solid var(--border-color);
343
- transition: border-color 0.3s ease;
 
 
 
344
  }
345
 
346
- .tip-card:hover {
347
- border-color: rgba(59, 130, 246, 0.5);
 
 
 
348
  }
349
 
350
- .tip-icon {
351
- width: 48px;
352
- height: 48px;
353
- background: rgba(59, 130, 246, 0.2);
354
- border-radius: 8px;
 
355
  display: flex;
356
- align-items: center;
357
- justify-content: center;
 
 
 
 
 
 
 
 
 
358
  font-size: 1.5rem;
359
- margin-bottom: 1rem;
360
  }
361
 
362
- .tip-title {
363
- font-size: 1.25rem;
364
  font-weight: 600;
365
- color: var(--text-primary);
366
- margin-bottom: 0.5rem;
367
  }
368
 
369
- .tip-text {
370
- color: var(--text-secondary);
 
371
  }
372
 
 
373
  /* Footer */
374
  .footer {
375
  border-top: 1px solid var(--border-color);
376
  margin-top: 5rem;
377
- background: rgba(26, 31, 46, 0.3);
 
 
 
 
 
 
 
 
 
 
 
378
  }
379
 
380
  .footer-text {
@@ -406,4 +437,10 @@ body {
406
  width: 100%;
407
  justify-content: center;
408
  }
 
 
 
 
 
 
409
  }
 
1
  :root {
2
+ --bg-primary: #F6F6F8;
3
+ --bg-secondary: #ffffff;
4
+ --bg-card: #ffffff;
5
+ --text-primary: #333333;
6
+ --text-secondary: #86868B;
7
+ --accent-orange: #FF9D00;
8
+ --accent-yellow: #FFD21E;
9
  --accent-blue: #3BB0D1;
10
  --accent-cyan: #2E4787;
11
  --accent-purple: #8b5cf6;
12
+ --border-color: #E0E0E0;
13
+ --radius: 0.75rem;
14
  --hover-bg: rgba(59, 130, 246, 0.1);
15
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.3);
16
+ --shadow-lg: 0 0px 5px rgba(0, 0, 0, 0.1);
17
  }
18
 
19
  * {
 
39
  /* Header */
40
  .header {
41
  border-bottom: 1px solid var(--border-color);
42
+ background: var(--bg-primary);
43
  backdrop-filter: blur(10px);
44
  }
45
 
 
67
  .title {
68
  font-size: 2rem;
69
  font-weight: bold;
70
+ background: var(--text-primary);
71
  -webkit-background-clip: text;
72
  -webkit-text-fill-color: transparent;
73
  background-clip: text;
 
114
  .intro-title {
115
  font-size: 2.5rem;
116
  font-weight: bold;
117
+ background: var(--text-primary);
118
  -webkit-background-clip: text;
119
  -webkit-text-fill-color: transparent;
120
  background-clip: text;
 
145
  top: 1.5rem;
146
  left: 1.5rem;
147
  z-index: 10;
148
+ background: var(--bg-secondary);
149
  backdrop-filter: blur(10px);
150
  padding: 0.75rem 1.5rem;
151
  border-radius: 12px;
 
152
  }
153
 
154
  .step-counter-text {
 
204
  /* Controls */
205
  .controls {
206
  padding: 2rem;
207
+ background: var(--bg-card);
208
  border-top: 1px solid var(--border-color);
209
  }
210
 
 
234
 
235
  .btn-secondary {
236
  background: var(--bg-secondary);
237
+ color: var(--text-secondary);
238
  border: 1px solid rgba(255, 255, 255, 0.1);
239
  }
240
 
241
  .btn-secondary:hover:not(:disabled) {
242
+ background: var(--bg-secondary);
243
+ border-color: var(--bg-secondary);
244
  }
245
 
246
  .btn-secondary .icon-left {
 
252
  }
253
 
254
  .btn-primary {
255
+ background: var(--bg-secondary);
256
+ color: var(--accent-orange);
257
+ border: 1px solid var(--accent-orange);
 
258
  }
259
 
260
  .btn-primary:hover:not(:disabled) {
261
+ background: var(--bg-secondary);
262
+ border-color: var(--accent-orange);
263
+ box-shadow: 0 0 5px var(--accent-orange, 0.01);
264
  }
265
 
266
  .btn-primary .icon-right {
 
309
 
310
  .indicator.active {
311
  width: 48px;
312
+ background: var(--accent-orange);
313
  box-shadow: 0 0 40px rgba(59, 130, 246, 0.2);
314
  }
315
 
 
324
 
325
  .progress-fill {
326
  height: 100%;
327
+ background: linear-gradient(to right, var(--accent-yellow), var(--accent-orange));
328
  transition: width 0.5s ease-out;
329
  border-radius: 9999px;
330
  }
331
+ /* Video Section */
332
+ .video-section {
 
 
 
 
333
  margin-top: 3rem;
334
+ margin-right: 4.5rem;
335
+ margin-left: 4.5rem;
336
+ display: grid;
337
+ grid-template-columns: 1fr 1fr;
338
+ gap: 2rem;
339
+ align-items: start;
340
  }
341
 
342
+ .video-wrapper {
343
+ aspect-ratio: 16/9;
344
+ }
345
+
346
+ .video-wrapper iframe {
347
+ width: 100%;
348
+ height: 100%;
349
+ border-radius: var(--radius);
350
+ box-shadow: 0 4px 12px hsla(0, 0%, 0%, 0.3);
351
  }
352
 
353
+ .video-text h2 {
354
+ font-size: 1.875rem;
355
+ font-weight: 700;
356
+ margin-bottom: 0.75rem;
357
+ color: var(--foreground);
358
  }
359
 
360
+ .video-description {
361
+ color: var(--muted-foreground);
362
+ margin-bottom: 1.5rem;
363
+ }
364
+
365
+ .tips-list {
366
  display: flex;
367
+ flex-direction: column;
368
+ gap: 1rem;
369
+ }
370
+
371
+ .tip-item {
372
+ display: flex;
373
+ align-items: flex-start;
374
+ gap: 0.75rem;
375
+ }
376
+
377
+ .tip-icon {
378
  font-size: 1.5rem;
 
379
  }
380
 
381
+ .tip-item h4 {
 
382
  font-weight: 600;
383
+ color: var(--foreground);
384
+ margin-bottom: 0.25rem;
385
  }
386
 
387
+ .tip-item p {
388
+ font-size: 0.875rem;
389
+ color: var(--muted-foreground);
390
  }
391
 
392
+
393
  /* Footer */
394
  .footer {
395
  border-top: 1px solid var(--border-color);
396
  margin-top: 5rem;
397
+ background: var(--bg-secondary);
398
+ }
399
+
400
+ .footer a {
401
+ color: var(--text-primary);
402
+ text-decoration: none;
403
+ transition: text-decoration 0.2s;
404
+ }
405
+
406
+ .footer a:hover {
407
+ color: var(--accent-orange);
408
+ text-decoration: underline;
409
  }
410
 
411
  .footer-text {
 
437
  width: 100%;
438
  justify-content: center;
439
  }
440
+ .video-section {
441
+ grid-template-columns: 1fr;
442
+ margin-top: 3rem;
443
+ margin-right: 0rem;
444
+ margin-left: 0rem;
445
+ }
446
  }