Update README.md
Browse files
README.md
CHANGED
@@ -359,6 +359,97 @@ body {
|
|
359 |
margin-bottom: 20px;
|
360 |
color: #333;
|
361 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
362 |
</style>
|
363 |
|
364 |
<div class="container">
|
|
|
359 |
margin-bottom: 20px;
|
360 |
color: #333;
|
361 |
}
|
362 |
+
.container {
|
363 |
+
max-width: 1200px;
|
364 |
+
margin: 0 auto;
|
365 |
+
background: linear-gradient(145deg, rgba(20, 35, 55, 0.95), rgba(15, 25, 45, 0.9), rgba(10, 20, 40, 0.85));
|
366 |
+
padding: 60px;
|
367 |
+
border-radius: 35px;
|
368 |
+
box-shadow: 0 25px 70px rgba(0, 0, 0, 0.8), inset 0 0 25px rgba(255, 255, 255, 0.1);
|
369 |
+
position: relative;
|
370 |
+
overflow: hidden;
|
371 |
+
border: 2px solid rgba(100, 200, 255, 0.2);
|
372 |
+
}
|
373 |
+
.container::before {
|
374 |
+
content: '';
|
375 |
+
position: absolute;
|
376 |
+
top: -60%;
|
377 |
+
left: -60%;
|
378 |
+
width: 220%;
|
379 |
+
height: 220%;
|
380 |
+
background: radial-gradient(circle, rgba(255, 255, 255, 0.2), transparent);
|
381 |
+
animation: pulse 14s infinite;
|
382 |
+
pointer-events: none;
|
383 |
+
}
|
384 |
+
@keyframes pulse {
|
385 |
+
0% { transform: scale(1); }
|
386 |
+
50% { transform: scale(1.2); }
|
387 |
+
100% { transform: scale(1); }
|
388 |
+
}
|
389 |
+
.section {
|
390 |
+
margin-bottom: 70px;
|
391 |
+
position: relative;
|
392 |
+
}
|
393 |
+
.section:hover {
|
394 |
+
transform: translateY(-7px);
|
395 |
+
transition: all 0.5s ease-in-out;
|
396 |
+
}
|
397 |
+
.detail {
|
398 |
+
padding: 25px;
|
399 |
+
margin-bottom: 25px;
|
400 |
+
border: 1px solid rgba(120, 160, 220, 0.3);
|
401 |
+
border-radius: 20px;
|
402 |
+
background: linear-gradient(145deg, rgba(255, 255, 255, 0.1), rgba(100, 140, 200, 0.2));
|
403 |
+
box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5), inset 0 0 15px rgba(255, 255, 255, 0.2);
|
404 |
+
transition: all 0.4s ease;
|
405 |
+
}
|
406 |
+
.detail:hover {
|
407 |
+
background: linear-gradient(145deg, rgba(255, 255, 255, 0.15), rgba(140, 180, 240, 0.25));
|
408 |
+
transform: translateY(-7px);
|
409 |
+
box-shadow: 0 20px 50px rgba(0, 0, 0, 0.7), inset 0 0 20px rgba(255, 255, 255, 0.25);
|
410 |
+
}
|
411 |
+
.detail-icon {
|
412 |
+
font-size: 1.8em;
|
413 |
+
color: #63d2ff;
|
414 |
+
margin-right: 20px;
|
415 |
+
}
|
416 |
+
.detail:hover .detail-icon {
|
417 |
+
color: #a2f4ff;
|
418 |
+
transform: scale(1.2);
|
419 |
+
}
|
420 |
+
ul {
|
421 |
+
list-style: none;
|
422 |
+
padding: 0;
|
423 |
+
}
|
424 |
+
ul li {
|
425 |
+
margin: 20px 0;
|
426 |
+
padding: 20px;
|
427 |
+
background: linear-gradient(145deg, rgba(255, 255, 255, 0.1), rgba(60, 100, 140, 0.25));
|
428 |
+
border-radius: 15px;
|
429 |
+
box-shadow: inset 0 0 15px rgba(0, 0, 0, 0.3), 0 8px 25px rgba(0, 0, 0, 0.6);
|
430 |
+
transition: all 0.4s ease;
|
431 |
+
}
|
432 |
+
ul li:hover {
|
433 |
+
background: linear-gradient(145deg, rgba(255, 255, 255, 0.15), rgba(80, 120, 160, 0.3));
|
434 |
+
transform: translateX(10px);
|
435 |
+
box-shadow: 0 15px 30px rgba(0, 0, 0, 0.5), inset 0 0 20px rgba(255, 255, 255, 0.2);
|
436 |
+
}
|
437 |
+
a {
|
438 |
+
color: #63d2ff;
|
439 |
+
text-decoration: none;
|
440 |
+
font-weight: bold;
|
441 |
+
transition: color 0.3s ease, text-shadow 0.3s ease;
|
442 |
+
}
|
443 |
+
a:hover {
|
444 |
+
color: #a2f4ff;
|
445 |
+
text-shadow: 0 0 12px rgba(255, 255, 255, 0.9), 0 0 18px rgba(100, 200, 255, 0.6);
|
446 |
+
}
|
447 |
+
h1, h2, h3 {
|
448 |
+
text-transform: uppercase;
|
449 |
+
color: #e8f0ff;
|
450 |
+
text-shadow: 5px 5px 15px rgba(0, 0, 0, 0.9), 0 0 20px rgba(255, 255, 255, 0.6);
|
451 |
+
font-weight: 700;
|
452 |
+
}
|
453 |
</style>
|
454 |
|
455 |
<div class="container">
|