summaryrefslogtreecommitdiffstats
path: root/src/styles/main.css
blob: e61c05d98f6ea7b3db590a1c9cd8c2f10b43aac9 (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
@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-family: "IBM Plex Mono", monospace;
}

body {
	margin: 0 10vw 0 10vw;
	max-width: 96ch;
}

h1 {
	font-size: 2em;
	margin-top: 1em;
}

header h1 {
	margin-bottom: 30vh;
}

h1 > a {
	text-decoration-style: wavy;
}

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;
}
remember that computers suck.