Update style.css
Browse files
style.css
CHANGED
|
@@ -1,16 +1,19 @@
|
|
| 1 |
:root {
|
| 2 |
-
--bg-primary: #
|
| 3 |
-
--bg-secondary: #
|
| 4 |
-
--bg-card: #
|
| 5 |
-
--text-primary: #
|
| 6 |
-
--text-secondary: #
|
|
|
|
|
|
|
| 7 |
--accent-blue: #3BB0D1;
|
| 8 |
--accent-cyan: #2E4787;
|
| 9 |
--accent-purple: #8b5cf6;
|
| 10 |
-
--border-color:
|
|
|
|
| 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
|
| 14 |
}
|
| 15 |
|
| 16 |
* {
|
|
@@ -36,7 +39,7 @@ body {
|
|
| 36 |
/* Header */
|
| 37 |
.header {
|
| 38 |
border-bottom: 1px solid var(--border-color);
|
| 39 |
-
background:
|
| 40 |
backdrop-filter: blur(10px);
|
| 41 |
}
|
| 42 |
|
|
@@ -64,7 +67,7 @@ body {
|
|
| 64 |
.title {
|
| 65 |
font-size: 2rem;
|
| 66 |
font-weight: bold;
|
| 67 |
-
background:
|
| 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:
|
| 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:
|
| 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:
|
| 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-
|
| 236 |
border: 1px solid rgba(255, 255, 255, 0.1);
|
| 237 |
}
|
| 238 |
|
| 239 |
.btn-secondary:hover:not(:disabled) {
|
| 240 |
-
background:
|
| 241 |
-
border-color:
|
| 242 |
}
|
| 243 |
|
| 244 |
.btn-secondary .icon-left {
|
|
@@ -250,15 +252,15 @@ body {
|
|
| 250 |
}
|
| 251 |
|
| 252 |
.btn-primary {
|
| 253 |
-
background: var(--
|
| 254 |
-
color: var(--
|
| 255 |
-
border: 1px solid
|
| 256 |
-
box-shadow: 0 0 40px rgba(59, 130, 246, 0.2);
|
| 257 |
}
|
| 258 |
|
| 259 |
.btn-primary:hover:not(:disabled) {
|
| 260 |
-
background:
|
| 261 |
-
border-color: var(--accent-
|
|
|
|
| 262 |
}
|
| 263 |
|
| 264 |
.btn-primary .icon-right {
|
|
@@ -307,7 +309,7 @@ body {
|
|
| 307 |
|
| 308 |
.indicator.active {
|
| 309 |
width: 48px;
|
| 310 |
-
background: var(--accent-
|
| 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-
|
| 326 |
transition: width 0.5s ease-out;
|
| 327 |
border-radius: 9999px;
|
| 328 |
}
|
| 329 |
-
|
| 330 |
-
|
| 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 |
-
.
|
| 339 |
-
|
| 340 |
-
|
| 341 |
-
|
| 342 |
-
|
| 343 |
-
|
|
|
|
|
|
|
|
|
|
| 344 |
}
|
| 345 |
|
| 346 |
-
.
|
| 347 |
-
|
|
|
|
|
|
|
|
|
|
| 348 |
}
|
| 349 |
|
| 350 |
-
.
|
| 351 |
-
|
| 352 |
-
|
| 353 |
-
|
| 354 |
-
|
|
|
|
| 355 |
display: flex;
|
| 356 |
-
|
| 357 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 358 |
font-size: 1.5rem;
|
| 359 |
-
margin-bottom: 1rem;
|
| 360 |
}
|
| 361 |
|
| 362 |
-
.tip-
|
| 363 |
-
font-size: 1.25rem;
|
| 364 |
font-weight: 600;
|
| 365 |
-
color: var(--
|
| 366 |
-
margin-bottom: 0.
|
| 367 |
}
|
| 368 |
|
| 369 |
-
.tip-
|
| 370 |
-
|
|
|
|
| 371 |
}
|
| 372 |
|
|
|
|
| 373 |
/* Footer */
|
| 374 |
.footer {
|
| 375 |
border-top: 1px solid var(--border-color);
|
| 376 |
margin-top: 5rem;
|
| 377 |
-
background:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 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 |
}
|