blob: fb5aa62619569fd4b288656df9acdea31e83522b (
plain) (
blame)
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
|
/* font */
@font-face {
font-family: "IBM Plex Mono";
src: url("/static/fonts/ibm-plex-mono-medium-normal.woff2") format("woff2");
font-style: normal;
font-weight: 400;
}
@font-face {
font-family: "IBM Plex Mono";
src: url("/static/fonts/ibm-plex-mono-medium-italic.woff2") format("woff2");
font-style: italic;
font-weight: 400;
}
@font-face {
font-family: "IBM Plex Mono";
src: url("/static/fonts/ibm-plex-mono-bold-normal.woff2") format("woff2");
font-style: normal;
font-weight: 600;
}
@font-face {
font-family: "IBM Plex Mono";
src: url("/static/fonts/ibm-plex-mono-bold-italic.woff2") format("woff2");
font-style: italic;
font-weight: 600;
}
@font-face {
font-family: "Recoleta";
src: url("/static/fonts/recoleta-medium-normal.woff") format("woff");
font-style: normal;
font-weight: 400;
}
@font-face {
font-family: "Recoleta";
src: url("/static/fonts/recoleta-bold-normal.woff") format("woff");
font-style: normal;
font-weight: 600;
}
/* page */
* {
font-family: "IBM Plex Mono", monospace;
}
body {
margin: 0 10vw 0 10vw;
max-width: 96ch;
}
/* title */
h1 {
font-size: 2em;
margin-top: 1em;
}
header h1 {
margin-bottom: 30vh;
}
header h1 a {
text-decoration: none;
font-size: 2em;
font-family: "Recoleta";
letter-spacing: .08em;
background-image: url("/static/underline.svg");
background-position-y: .5em;
background-repeat: repeat-x;
background-size: auto;
}
/* elements */
a, a:hover, a:visited {
color: blue;
}
ul {
padding-inline-start: 0;
}
ul li {
display: block;
}
footer {
background-color: blue;
margin: 4em 0 4em 0;
}
footer a, footer a:hover, footer a:visited {
color: white;
}
img {
cursor: crosshair;
max-width: 100%;
}
.img-container {
display: flex;
flex-direction: row;
width: 100%;
}
.img-item:not(:last-child) {
margin-right: 1em;
}
/* mobile */
@media only screen and (max-width: 72ch) {
/* title */
header h1 a {
font-size: 13vw;
}
}
|