|
|
Строка 1: |
Строка 1: |
| <!DOCTYPE html>
| | == Game Universe Timeline == |
| <html>
| |
| <head>
| |
| <style>
| |
| /* Timeline container */
| |
| .timeline {
| |
| background: linear-gradient(45deg, #1a1a1a, #2d2d2d);
| |
| padding: 30px;
| |
| color: #fff;
| |
| border-radius: 15px;
| |
| box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
| |
| font-family: 'Segoe UI', Roboto, sans-serif;
| |
| }
| |
|
| |
|
| /* Timeline header */
| | <div class="timeline-container"> |
| .timeline-header {
| | {| class="wikitable" style="width: 100%; background: #1a1a1a; color: #fff; border: 2px solid #4a4a4a; margin: 1em 0;" |
| font-size: 2em;
| | ! style="background: #2d2d2d; color: #00bcd4; padding: 15px; font-size: 120%; text-align: left;" colspan="2" | Ancient Era |
| font-weight: 700;
| | |- |
| margin-bottom: 40px;
| | | style="width: 100px; color: #00bcd4; padding: 15px; vertical-align: top; border-right: 2px solid #00bcd4;" | Year 0 |
| padding-bottom: 20px;
| | | style="padding: 15px; background: #2d2d2d;" | |
| border-bottom: 2px solid #4a4a4a;
| | '''The Great Awakening'''<br/> |
| color: #00bcd4;
| | ''The first conscious beings emerge from the primordial chaos.'' |
| letter-spacing: 2px;
| | |- |
| text-transform: uppercase;
| | | style="width: 100px; color: #00bcd4; padding: 15px; vertical-align: top; border-right: 2px solid #00bcd4;" | Year 372 |
| }
| | | style="padding: 15px; background: #2d2d2d;" | |
| | | '''Formation of the First Kingdom'''<br/> |
| /* Era marker */
| | ''The scattered tribes unite under a single banner.'' |
| .era-marker {
| | |- |
| background: linear-gradient(90deg, #00bcd4, transparent);
| | ! style="background: #2d2d2d; color: #00bcd4; padding: 15px; font-size: 120%; text-align: left;" colspan="2" | Classical Era |
| padding: 15px 25px;
| | |- |
| margin: 30px -30px;
| | | style="width: 100px; color: #00bcd4; padding: 15px; vertical-align: top; border-right: 2px solid #00bcd4;" | Year 1000 |
| font-size: 1.4em;
| | | style="padding: 15px; background: #2d2d2d;" | |
| font-weight: 600;
| | '''The Age of Magic'''<br/> |
| color: #fff;
| | ''Ancient secrets of arcane power are unlocked.'' |
| text-transform: uppercase;
| | |- |
| letter-spacing: 1px;
| | | style="width: 100px; color: #00bcd4; padding: 15px; vertical-align: top; border-right: 2px solid #00bcd4;" | Year 1247 |
| position: relative;
| | | style="padding: 15px; background: #2d2d2d;" | |
| }
| | '''The Great War'''<br/> |
| | | ''A cataclysmic conflict erupts between magical factions.'' |
| /* Timeline entry */
| | |} |
| .timeline-entry {
| |
| margin: 30px 0;
| |
| padding-left: 50px;
| |
| position: relative;
| |
| border-left: 2px solid #00bcd4;
| |
| transition: all 0.3s ease;
| |
| }
| |
| | |
| .timeline-entry:hover {
| |
| transform: translateX(10px);
| |
| }
| |
| | |
| /* Entry dot */
| |
| .timeline-entry::before { | |
| content: "";
| |
| position: absolute;
| |
| left: -11px;
| |
| top: 0;
| |
| width: 20px;
| |
| height: 20px;
| |
| background: #00bcd4;
| |
| border-radius: 50%;
| |
| box-shadow: 0 0 20px rgba(0, 188, 212, 0.5);
| |
| }
| |
| | |
| /* Entry date */
| |
| .timeline-date {
| |
| font-size: 1.2em;
| |
| font-weight: 600;
| |
| color: #00bcd4;
| |
| margin-bottom: 10px;
| |
| }
| |
| | |
| /* Entry title */
| |
| .timeline-title { | |
| font-size: 1.4em;
| |
| font-weight: 500;
| |
| color: #fff;
| |
| margin-bottom: 10px;
| |
| }
| |
| | |
| /* Entry description */
| |
| .timeline-description {
| |
| color: #b0b0b0;
| |
| line-height: 1.6;
| |
| font-size: 1em;
| |
| padding-bottom: 20px;
| |
| border-bottom: 1px solid #4a4a4a;
| |
| }
| |
| | |
| /* Hover effects */
| |
| .timeline-entry:hover::before {
| |
| transform: scale(1.2);
| |
| box-shadow: 0 0 30px rgba(0, 188, 212, 0.8);
| |
| }
| |
| | |
| .timeline-entry:hover .timeline-title {
| |
| color: #00bcd4;
| |
| }
| |
| | |
| /* Animation for entries */
| |
| @keyframes fadeIn {
| |
| from { opacity: 0; transform: translateX(-20px); }
| |
| to { opacity: 1; transform: translateX(0); }
| |
| }
| |
| | |
| .timeline-entry {
| |
| animation: fadeIn 0.5s ease forwards;
| |
| }
| |
| </style>
| |
| </head>
| |
| <body>
| |
| | |
| <div class="timeline">
| |
| <div class="timeline-header">Game Universe Timeline</div>
| |
|
| |
| <div class="era-marker">Ancient Era</div>
| |
|
| |
| <div class="timeline-entry">
| |
| <div class="timeline-date">Year 0</div>
| |
| <div class="timeline-title">The Great Awakening</div>
| |
| <div class="timeline-description">The first conscious beings emerge from the primordial chaos, bringing forth a new age of existence in a universe previously shrouded in darkness.</div>
| |
| </div>
| |
|
| |
| <div class="timeline-entry">
| |
| <div class="timeline-date">Year 372</div>
| |
| <div class="timeline-title">Formation of the First Kingdom</div>
| |
| <div class="timeline-description">From the ashes of countless tribal conflicts, the first unified kingdom rises, marking the beginning of organized civilization and the dawn of recorded history.</div>
| |
| </div>
| |
|
| |
| <div class="era-marker">Classical Era</div>
| |
|
| |
| <div class="timeline-entry">
| |
| <div class="timeline-date">Year 1000</div>
| |
| <div class="timeline-title">The Age of Magic</div>
| |
| <div class="timeline-description">Ancient secrets of arcane power are unlocked, forever changing the fabric of society as mortals learn to harness the very essence of creation.</div>
| |
| </div>
| |
|
| |
| <div class="timeline-entry">
| |
| <div class="timeline-date">Year 1247</div>
| |
| <div class="timeline-title">The Great War</div>
| |
| <div class="timeline-description">A cataclysmic conflict erupts between the most powerful magical factions, reshaping continents and establishing new orders of power in its wake.</div>
| |
| </div>
| |
| </div> | | </div> |
|
| |
|
| </body>
| | [[Category:Timeline]] |
| </html>
| | [[Category:Game Lore]] |