-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdigital_archaeologist.html
44 lines (44 loc) · 1.55 KB
/
digital_archaeologist.html
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
<div class="screen">
<div class="view view--full">
<div class="layout layout--col layout--center gap--xlarge">
<!-- Year display in top area with light background -->
<div class="item bg-gray-5" style="padding: 16px;">
<div style="display: flex; align-items: center; gap: 400px;">
<span class="value value--xlarge value--tnums">{{ year }}</span>
<img
class="image-dither"
src="https://i.ibb.co/PgnRg6y/digital-archaeologist.webp"
width="128"
height="128"
/>
</div>
</div>
<!-- Main content in white area -->
<div class="item bg-white">
<div class="content">
<span class="title clamp--2 label label--outline">{{ artifact_name }}</span>
<div class="description clamp--4">
{{ description }}
</div>
</div>
</div>
<!-- Fun fact in very light background -->
<div class="item bg-white">
<div class="content">
<span class="label label--medium">★ Did You Know?</span>
<div class="description clamp--3">
{{ fun_fact }}
</div>
</div>
</div>
</div>
<div class="title_bar">
<img
class="image"
src="https://i.ibb.co/PgnRg6y/digital-archaeologist.webp"
/>
<span class="title">Digital Archaeologist</span>
<span class="instance clamp--1">Artifact {{ number }}</span>
</div>
</div>
</div>