summaryrefslogtreecommitdiff
path: root/static/main.css
blob: 133e31d9926b35af75299480ec7188c1b27e8e07 (plain)
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
@import url("https://unpkg.com/@catppuccin/palette/css/catppuccin.css");

:root {
	--background-color: var(--ctp-mocha-base);
	--primary-font: "Noto Sans";
	--regular-text: var(--ctp-mocha-text);
	--blue-text: var(--ctp-mocha-blue);
	--subtext: var(--ctp-mocha-subtext1);
	--medium-screen: 768px;
}

body {
	background-color: var(--background-color);
	font-family: var(--primary-font), system-ui;
	line-height: 1.5rem;
	margin-left: auto;
	margin-right: auto;
	margin-top: 1.25rem;
	margin-bottom: 1.25rem;
	max-width: var(--medium-screen);
	padding: 0.75rem;
}

h1,
h2,
h3,
h4,
h5,
h6,
strong,
b,
p {
	color: var(--regular-text);
}

a {
	text-decoration: underline;
	color: var(--blue-text);
}

video {
	width: 100%;
	height: auto;
	max-width: var(--medium-screen);
}

footer {
	color: var(--subtext);
	font-size: 0.75rem;

	text-align: right;
}

#nav_links {
	display: flex;
	gap: 0.25rem;
}

#gifs {
	display: none;
	flex-direction: row;
	flex-wrap: wrap;
	gap: 0.5rem;
	justify-content: space-evenly;
}

.blogpost {
	font-size: 0.85rem;
}

@media screen and (min-width: 768px) {
	#gifs {
		display: flex;
	}
}