sources-of-light/pages/003-toc.html

97 lines
2.9 KiB
HTML
Raw Normal View History

2024-11-14 05:15:53 +00:00
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>ToC</title>
<style>
body {
margin: 0;
font-family: "Sometype Mono";
}
* {
box-sizing: border-box;
}
#page {
padding: 15mm;
width: 9.25in;
height: 12.25in;
/*background-color: lightblue;*/
display: flex;
justify-content: center;
align-items: center;
position: relative;
}
.list-item {
font-size: 24pt;
margin-bottom: 0.5em;
}
.number {
display: inline-block;
text-align: right;
width: 2em;
font-weight: 700;
}
.title {
letter-spacing: -0.04em;
font-weight: 500;
}
#colorstrip {
position: absolute;
left: 0;
top: 0;
background-image: url(../assets/color-strip-vertical-grayscale.jpeg);
width: 0.5in;
height: 100%;
background-size: contain;
}
</style>
</head>
<body>
<div id="page">
<div id="colorstrip"></div>
<div class="list">
<div class="list-item">
<span class="number">4</span>
<span class="title">Calling Out a Name</span>
</div>
<div class="list-item">
<span class="number">34</span>
<span class="title">Waiting for the Stars to Fall</span>
</div>
<div class="list-item">
<span class="number">66</span>
<span class="title">Shine</span>
</div>
<div class="list-item">
<span class="number">83</span>
<span class="title">Castles in the Sky</span>
</div>
<div class="list-item">
<span class="number">103</span>
<span class="title">The Haunted House</span>
</div>
<div class="list-item">
<span class="number">118</span>
<span class="title">Fair-weather Friend</span>
</div>
<div class="list-item">
<span class="number">130</span>
<span class="title">Still Alive</span>
</div>
<div class="list-item">
<span class="number">149</span>
<span class="title">Without You</span>
</div>
</div>
</div>
</body>
</html>