aboutsummaryrefslogtreecommitdiff
path: root/src/templates/base.html
blob: 0da5dd208875c535fedb2182865afc4d016f015b (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
<!DOCTYPE html>
<html lang="en">
<head>
	<title>{{title}} - the evil transgenders club</title>
	<style>
		:root {
			--trans-blue: #5bcefa;
			--trans-pink: #f5a9b8;
		}

		body {
			background: black;
			color: white;
			font-family: monospace;
		}

		h1 {
			color: var(--trans-blue);
			text-align: center;
		}

		.trans-shadow {
			text-shadow: 1px 1px var(--trans-pink), 2px 2px white, 3px 3px var(--trans-pink), 4px 4px var(--trans-blue);
		}

		.subtitle {
			text-align: center;
		}

		.main-navigation {
			text-align: center;
		}

		a {
			color: #fff;
		}

		a:hover {
			background-color: #fff;
			color: #000;
		}
	</style>
</head>

<body>
	<header>
		<h1 class="trans-shadow">the evil transgenders club</h1>
	</header>
	{{body}}
</body>
</html>