(Blanked the page) Tag: Blanking |
No edit summary |
||
Line 1: | Line 1: | ||
/* | |||
<div class='timeline-entry--box'> | |||
<div class='timeline-entry--header'> | |||
<div class='timeline-entry--time'>Almost 50,000 Years Ago</div> | |||
<div class='timeline-entry--title'>The Event In Question</div> | |||
</div> | |||
<div class='timeline-entry--quotebox'> | |||
<div class='timeline-entry--quote'>Something Terrible Happened Today (and I'm making it your problem)</div> | |||
<div class='timeline-entry--author'>The Last Remaining Gyaru Auril</div> | |||
<div class='timeline-entry--source'>SoleAdmirers</div> | |||
</div> | |||
<div class='timeline-entry--body'> | |||
<div class='timeline-entry--event'>(insert 50 pages of tragic OC species backstory here)</div> | |||
</div> | |||
</div> | |||
*/ | |||
.timeline-container { | |||
counter-reset: timeline-number; | |||
display: flex; | |||
flex-direction: column; | |||
} | |||
.timeline-entry--box { | |||
counter-increment: timeline-number; | |||
width: 45%; | |||
display: flex; | |||
flex-direction: column; | |||
padding: 1em; | |||
margin: 1em; | |||
/* todo: lightmode */ | |||
background-color: rgba(55, 55, 55, 0.1); | |||
} | |||
.timeline-entry--box:nth-child(even) { | |||
align-self: end; | |||
} | |||
.timeline-entry--header { | |||
width: 100%; | |||
display: flex; | |||
} | |||
.timeline-entry--header:nth-child(even) { | |||
} | |||
.timeline-entry--time { | |||
} | |||
.timeline-entry--title { | |||
} | |||
.timeline-entry--quotebox { | |||
width: 100%; | |||
} | |||
.timeline-entry--quote { | |||
} | |||
.timeline-entry--author { | |||
} | |||
.timeline-entry--source { | |||
} | |||
.timeline-story--body { | |||
width: 100%; | |||
} | |||
.timeline-entry--event { | |||
} |
Revision as of 00:16, 18 December 2023
/*
<div class='timeline-entry--box'>
<div class='timeline-entry--header'>
<div class='timeline-entry--time'>Almost 50,000 Years Ago</div>
<div class='timeline-entry--title'>The Event In Question</div>
</div>
<div class='timeline-entry--quotebox'>
<div class='timeline-entry--quote'>Something Terrible Happened Today (and I'm making it your problem)</div>
<div class='timeline-entry--author'>The Last Remaining Gyaru Auril</div>
<div class='timeline-entry--source'>SoleAdmirers</div>
</div>
<div class='timeline-entry--body'>
<div class='timeline-entry--event'>(insert 50 pages of tragic OC species backstory here)</div>
</div>
</div>
*/
.timeline-container {
counter-reset: timeline-number;
display: flex;
flex-direction: column;
}
.timeline-entry--box {
counter-increment: timeline-number;
width: 45%;
display: flex;
flex-direction: column;
padding: 1em;
margin: 1em;
/* todo: lightmode */
background-color: rgba(55, 55, 55, 0.1);
}
.timeline-entry--box:nth-child(even) {
align-self: end;
}
.timeline-entry--header {
width: 100%;
display: flex;
}
.timeline-entry--header:nth-child(even) {
}
.timeline-entry--time {
}
.timeline-entry--title {
}
.timeline-entry--quotebox {
width: 100%;
}
.timeline-entry--quote {
}
.timeline-entry--author {
}
.timeline-entry--source {
}
.timeline-story--body {
width: 100%;
}
.timeline-entry--event {
}