-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathTimeline.html
More file actions
397 lines (392 loc) · 11.9 KB
/
Copy pathTimeline.html
File metadata and controls
397 lines (392 loc) · 11.9 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
<!DOCTYPE html>
<html lang="en" data-selected-theme="alt">
<head>
<meta charset="utf-8">
<title>Timeline</title>
<style>
:root {
--hue1: 200deg;
--hue2: 320deg;
--angle: 160deg;
--h1-0-1-h2-0-1: linear-gradient(var(--angle), hwb(var(--hue1) 00% 10%) 25%, hwb(var(--hue2) 00% 10%));
--lore: hwb(var(--hue1) 75% 00%);
--cute: hwb(var(--hue2) 00% 00%);
--tl-col: hwb(var(--hue1) 00% 90%);
}
:root,
[data-selected-theme="normal"] {
--lore: hwb(var(--hue1) 00% 75%);
--tl-col: hwb(var(--hue1) 00% 90%);
}
[data-selected-theme="alt"] {
--lore: hwb(var(--hue1) 75% 00%);
--tl-col: hwb(var(--hue1) 90% 00%);
}
details {
margin: initial;
}
details.lore summary{
border-left: solid 10px var(--lore);
}
details.cute summary{
border-left: solid 10px var(--cute);
}
summary p.chars{
margin-left: 30px;
margin-bottom: 5px;
text-align: left;
text-indent: 0;
width: fit-content;
transform: translateX(0px);
font-size: 1rem;
font-weight: 700;
font-family: 'Merriweather Sans', sans-serif;
}
summary.sectionHeader{
background-image: var(--h1-0-1-h2-0-1);
background-attachment: fixed;
}
.twc{
margin-bottom: 0px;
}
summary{
text-align: left;
}
summary h1{
margin-bottom: 0;
}
.sectionHeader:not(#ToCTitle):not(summary) h1{
padding-left: 0;
}
.sectionHeader:not(:first-of-type){
margin: 5px 0;
}
p:not(.info){
white-space: pre-wrap;
text-align: left;
padding-bottom: 5px;
text-indent: 20px;
width: clamp(75px, min(150ch, 85%), 100%);
transform: translateX(calc(50vw - 50% - 10px));
}
.info{
font-size: 20px;
font-weight: 400;
text-align: center;
padding: 10px;
}
.tableOfContents{
font-size: 17.5px;
font-weight: 550;
text-align: left;
padding-left:15vw;
padding-right:15vw;
}
ul a {
padding: 0 .25rem;
margin: 0 -.25rem;
position: relative;
transition: color .5s ease-in-out;
}
ul a:after {
border-radius: 25px;
transition: box-shadow .4s ease-in-out;
box-shadow: inset 0 0 0 0 var(--h2-6-0);
content: '';
z-index: -1;
position: absolute;
left: -5px;
height: 100%;
width: calc(100% + 10px);
top: 0%;
}
ul a:hover:after {
box-shadow: inset 500px 0 0 0 var(--h2-6-0);
}
ul{
font-size: 20px;
}
ul li ul{
font-size: 17.5px;
}
ul:not(#color-key) li.lore, ul:not(#color-key) li.cute{
list-style: disc;
}
ul:not(#color-key) li.cute::marker
{
color: var(--cute);
}
ul:not(#color-key) li.lore::marker
{
color: var(--lore);
}
ul:not(#color-key) h3{
padding: 10px 0;
margin: 15px 0 0 0;
font-size: 20px;
}
ul#color-key{
list-style: none;
}
ul#color-key li div{
display: inline-block;
width: 1rem;
height: 1rem;
border-radius: 1rem;
}
ul#color-key li:nth-child(1) div{
background-color: var(--lore);
}
ul#color-key li:nth-child(2) div{
background-color: var(--cute);
}
@media only screen and (max-width: 520px) {
.tableOfContents {
padding-left:0vw;
padding-right:0vw;
}
p:not(.info){
text-indent: 0px;
}
.content{
padding: 10px 10px 10px 10px;
}
}
</style>
<style>
[data-char="yellow"] {--time-dot-color: hsl(60 , 100%, 70%);}
[data-char="Elliot"] {--time-dot-color: hsl(75 , 100%, 20%);}
[data-char="Jay"] {--time-dot-color: hsl(200, 100%, 50%);}
[data-char="Sam"] {--time-dot-color: hsl(120, 100%, 50%);}
[data-char="Jacob"] {--time-dot-color: hsl(350, 100%, 70%);}
.time{
display: grid;
grid-template-columns: 150px 25px 1fr;
gap: 10px;
}
.time h2 {
width: 150px;
text-align: right;
margin: 0;
}
.time .dot {
margin-inline: 16px;
border-left: 2px solid var(--h1-0-8);
height: 100%;
position: relative;
}
.time .dot::after {
content: "";
box-sizing: border-box;
background-color: var(--time-dot-color);
position: absolute;
border: 2px solid var(--h1-0-8);
border-radius: 25px;
width: 25px;
height: 25px;
top: 0px;
left: -14px;
}
.time .events {
text-align: left;
margin: 0;
margin-bottom: 10px;
padding: 10px;
list-style: none;
order: 2;
background-color: hsla(0, 0%, 100%, 0.1);
border-radius: 10px;
font-size: 1rem;
}
.time .events li{
width: fit-content;
text-wrap: nowrap;
}
.time .events li a{
/* color: var(--tl-col); */
text-decoration: underline;
}
.timeline{
/* width: max-content; */
margin: 10px;
}
@media only screen and (min-width: 1000px){
.timeline{
display: flex;
flex-direction: column;
height: 100vh;
flex-wrap: wrap;
}
}
</style>
<link rel="stylesheet" href="CSS/Defaults.css">
</head>
<body>
<article class="timeline">
<section data-char="Elliot" class="time">
<h2>-42 Years</h2>
<div class="dot"></div>
<ul class="events">
<li>Elliot is born</li>
</ul>
</section>
<section data-char="Elliot" class="time">
<h2>-27 Years</h2>
<div class="dot"></div>
<ul class="events">
<li><a>Security Footage #6385</a></li>
</ul>
</section>
<section data-char="Jay" class="time">
<h2>-24 Years</h2>
<div class="dot"></div>
<ul class="events">
<li>Jay is born</li>
</ul>
</section>
<section data-char="Elliot" class="time">
<h2></h2>
<div class="dot"></div>
<ul class="events">
<li><a>The Briefcase</a></li>
</ul>
</section>
<section data-char="Jacob" class="time">
<h2>-22 Years</h2>
<div class="dot"></div>
<ul class="events">
<li>Jacob is born</li>
</ul>
</section>
<section data-char="Elliot" class="time">
<h2>-21 Years</h2>
<div class="dot"></div>
<ul class="events">
<li>Elliot and Nico adopt Jay</li>
</ul>
</section>
<section data-char="Jay" class="time">
<h2></h2>
<div class="dot"></div>
<ul class="events">
<li>The portal enters the world</li>
<li>Jay finds it, gains the pendant</li>
<li>Jay gets kidnapped</li>
</ul>
</section>
<section data-char="Sam" class="time">
<h2>-20 Years</h2>
<div class="dot"></div>
<ul class="events">
<li>Sam is born</li>
</ul>
</section>
<section data-char="Jay" class="time">
<h2>-19 Years</h2>
<div class="dot"></div>
<ul class="events">
<li>Pendant gains sentience</li>
</ul>
</section>
<section data-char="Sam" class="time">
<h2>-12 Years</h2>
<div class="dot"></div>
<ul class="events">
<li>Sam and Jacob meet</li>
<li><a>The Meeting</a></li>
<li><a>The Meeting Pt 2</a></li>
<li><a>Lunch</a></li>
<li><a>Dictionary</a></li>
<li><a>3.14159, this is pi, followed by...</a></li>
<li><a>Friends?</a></li>
<li><a>Friends!</a></li>
<li><a>Sleepover</a></li>
</ul>
</section>
<section data-char="Jay" class="time">
<h2>-11 Years</h2>
<div class="dot"></div>
<ul class="events">
<li>Particle is released</li>
<li>Jay escapes</li>
</ul>
</section>
<section data-char="Sam" class="time">
<h2>-10 Years</h2>
<div class="dot"></div>
<ul class="events">
<li><a>The Event</a></li>
<li><a>The News</a></li>
<li><a>I'm here for you</a></li>
<li><a>You said I could stay here...</a></li>
</ul>
</section>
<section data-char="Jay" class="time">
<h2></h2>
<div class="dot"></div>
<ul class="events">
<li>Jay meets Jacob</li>
<li><a>Jay x Jacob Meeting</a></li>
<li><a>Christmas Tree V1</a></li>
</ul>
</section>
<section data-char="Jacob" class="time">
<h2>-9 Years</h2>
<div class="dot"></div>
<ul class="events">
<li><a>Colors</a></li>
</ul>
</section>
<section data-char="Jacob" class="time">
<h2>-8 Years</h2>
<div class="dot"></div>
<ul class="events">
<li><a>The Musical</a></li>
<li><a>The Musical, Part 2</a></li>
<li><a>Visiting</a></li>
</ul>
</section>
<section data-char="Jay" class="time">
<h2>-7 Years</h2>
<div class="dot"></div>
<ul class="events">
<li>Jay speaks for the first time</li>
<li><a>Taken</a></li>
</ul>
</section>
<section data-char="Jay" class="time">
<h2>-6 Years</h2>
<div class="dot"></div>
<ul class="events">
<li>Jay meets Sam</li>
<li><a>Jay x Sam Meeting</a></li>
<li><a>Bandages</a></li>
<li><a>Nightmares</a></li>
<li><a>Returning</a></li>
</ul>
</section>
<section data-char="Elliot" class="time">
<h2>-3 Years</h2>
<div class="dot"></div>
<ul class="events">
<li><a>Idk what to title this</a></li>
</ul>
</section>
<section data-char="yellow" class="time">
<h2>0</h2>
<div class="dot"></div>
<ul class="events">
<li>Point in time all rps start from</li>
</ul>
</section>
<section data-char="Jacob" class="time">
<h2>1 Year</h2>
<div class="dot"></div>
<ul class="events">
<li><a>Dead Man Walking</a></li>
<li><a>Christmas Tree V2</a></li>
</ul>
</section>
</article>
</body>
</html>