Year 0
The Great Awakening
The first conscious beings emerge from the primordial chaos, marking the beginning of recorded history.
Mosley (обсуждение | вклад) (Новая страница: «<!DOCTYPE html> <html> <head> <style> .timeline { border: 1px solid #a2a9b1; background-color: #f8f9fa; padding: 12px; margin: 16px 0; font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif; } .timeline-header { font-size: 1.2em; font-weight: bold; border-bottom: 1px solid #a2a9b1; margin-bottom: 12px; padding-bottom: 8px; } .timeline-entry { margin: 16px 0; padding-left: 20px;...») |
Mosley (обсуждение | вклад) Нет описания правки |
||
Строка 3: | Строка 3: | ||
<head> | <head> | ||
<style> | <style> | ||
/* Timeline container */ | |||
.timeline { | .timeline { | ||
border: 1px solid #a2a9b1; | border: 1px solid #a2a9b1; | ||
Строка 11: | Строка 12: | ||
} | } | ||
.timeline | /* Timeline header */ | ||
.timeline .header { | |||
font-size: 1.2em; | font-size: 1.2em; | ||
font-weight: bold; | font-weight: bold; | ||
Строка 19: | Строка 21: | ||
} | } | ||
.timeline | /* Timeline entry */ | ||
.timeline .entry { | |||
margin: 16px 0; | margin: 16px 0; | ||
padding-left: 20px; | padding-left: 20px; | ||
Строка 25: | Строка 28: | ||
} | } | ||
.timeline | /* Entry dot */ | ||
.timeline .entry::before { | |||
content: ""; | content: ""; | ||
position: absolute; | position: absolute; | ||
Строка 36: | Строка 40: | ||
} | } | ||
.timeline | /* Entry date */ | ||
.timeline .date { | |||
font-weight: bold; | font-weight: bold; | ||
color: #36c; | color: #36c; | ||
} | } | ||
.timeline | /* Entry content */ | ||
.timeline .event { | |||
margin-top: 4px; | margin-top: 4px; | ||
} | } | ||
.timeline | .timeline .description { | ||
color: #54595d; | color: #54595d; | ||
font-size: 0.95em; | font-size: 0.95em; | ||
Строка 51: | Строка 57: | ||
} | } | ||
.era | /* Era marker */ | ||
.timeline .era { | |||
background-color: #eaecf0; | background-color: #eaecf0; | ||
padding: 8px; | padding: 8px; | ||
Строка 63: | Строка 70: | ||
<div class="timeline"> | <div class="timeline"> | ||
<div class=" | <div class="header">Game Universe Timeline</div> | ||
<div class="era | <div class="era">Ancient Era</div> | ||
<div class=" | <div class="entry"> | ||
<div class=" | <div class="date">Year 0</div> | ||
<div class=" | <div class="event">The Great Awakening</div> | ||
<div class=" | <div class="description">The first conscious beings emerge from the primordial chaos, marking the beginning of recorded history.</div> | ||
</div> | </div> | ||
<div class=" | <div class="entry"> | ||
<div class=" | <div class="date">Year 372</div> | ||
<div class=" | <div class="event">Formation of the First Kingdom</div> | ||
<div class=" | <div class="description">The scattered tribes unite under a single banner, establishing the foundations of civilization.</div> | ||
</div> | </div> | ||
<div class="era | <div class="era">Classical Era</div> | ||
<div class=" | <div class="entry"> | ||
<div class=" | <div class="date">Year 1000</div> | ||
<div class=" | <div class="event">The Age of Magic</div> | ||
<div class=" | <div class="description">Discovery of arcane arts transforms society, leading to rapid technological and cultural advancement.</div> | ||
</div> | </div> | ||
<div class=" | <div class="entry"> | ||
<div class=" | <div class="date">Year 1247</div> | ||
<div class=" | <div class="event">The Great War</div> | ||
<div class=" | <div class="description">A devastating conflict between magical factions reshapes the political landscape.</div> | ||
</div> | </div> | ||
<div class="era | <div class="era">Modern Era</div> | ||
<div class=" | <div class="entry"> | ||
<div class=" | <div class="date">Year 2000</div> | ||
<div class=" | <div class="event">The Convergence</div> | ||
<div class=" | <div class="description">Technology and magic merge, ushering in an unprecedented age of progress and discovery.</div> | ||
</div> | </div> | ||
</div> | </div> |
<!DOCTYPE html> <html> <head> <style> /* Timeline container */ .timeline {
border: 1px solid #a2a9b1; background-color: #f8f9fa; padding: 12px; margin: 16px 0; font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
}
/* Timeline header */ .timeline .header {
font-size: 1.2em; font-weight: bold; border-bottom: 1px solid #a2a9b1; margin-bottom: 12px; padding-bottom: 8px;
}
/* Timeline entry */ .timeline .entry {
margin: 16px 0; padding-left: 20px; position: relative;
}
/* Entry dot */ .timeline .entry::before {
content: ""; position: absolute; left: 0; top: 6px; height: 8px; width: 8px; background: #36c; border-radius: 50%;
}
/* Entry date */ .timeline .date {
font-weight: bold; color: #36c;
}
/* Entry content */ .timeline .event {
margin-top: 4px;
}
.timeline .description {
color: #54595d; font-size: 0.95em; margin-top: 4px;
}
/* Era marker */ .timeline .era {
background-color: #eaecf0; padding: 8px; margin: 16px -12px; font-weight: bold; color: #202122;
} </style> </head> <body>
</body> </html>