blob: f97579b48e7dc81c5836a68217ef6ce0171befb7 (
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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
|
@import url('https://fonts.googleapis.com/css2?family=Quicksand:wght@400;600&display=swap');
:root {
/* COLOURSCHEME 1, BLUE */
/*
--background: #121d28;
--text: #bbd7f2;
--header: #bbd7f2;
--secondary: #76baf9;
--highlight: #7ceea7;
*/
/* COLOURSCHEME 2, ORANGE */
--background: #141210;
--header: #fdb04d;
--text: #faca8b;
--secondary: #ee8041;
--highlight: #ee4c41;
}
body {
margin: 0px;
background-color: var(--background);
}
@media (max-aspect-ratio: 6/7) {
.contentpane {
margin: auto;
width: 100%;
min-height: 100%;
}
}
@media (min-aspect-ratio: 7/7) {
.contentpane {
margin: auto;
width: 60%;
min-height: 100%;
}
}
h1 {
text-align: center;
font-family: 'Quicksand', sans-serif;
font-size: 28pt;
font-weight: 600;
color: var(--header);
padding: 50px 14px 15px 14px;
}
p {
text-align: left;
text-indent: 25px;
font-family: 'Quicksand', sans-serif;
font-size: 14pt;
color: var(--text);
padding: 8px 50px 8px 50px;
}
a {
color: var(--secondary);
font-family: 'Quicksand', sans-serif;
font-style: italic;
}
a:hover {
color: var(--highlight);
}
ul h2 {
text-align: left;
text-indent: 25px;
font-family: 'Quicksand', sans-serif;
font-size: 16pt;
font-weight: 600;
font-style: italic;
color: var(--text);
padding: 15px 50px 15px 5px;
}
h2 a {
font-size: 100%;
font-style: italic;
}
a.backbutton {
font-style: normal;
font-size: 80%;
text-decoration: none;
padding: 0px;
}
ul {
list-style-position: outside;
padding: 0px 0px 0px 75px;
}
li {
color: var(--highlight);
}
|