blob: cae0f3f06683119f4956a405a3a4cdbfe3578c19 (
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
|
@import url('https://fonts.googleapis.com/css2?family=Quicksand:wght@400;600&display=swap');
:root {
--background: #121d28;
--text: #bbd7f2;
--header: #bbd7f2;
--highlight: #7ceea7;
}
body{
margin: 0px;
}
.background {
background-color: var(--background);
width: 100%;
min-height: 100%;
}
.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 0px 15px 0px;
}
p {
text-align: left;
text-indent: 25px;
font-family: 'Quicksand', sans-serif;
font-size: 14pt;
color: var(--text);
padding: 15px 50px 15px 50px;
}
a {
color: var(--text);
font-family: 'Quicksand', sans-serif;
font-style: italic;
}
a:hover {
color: var(--highlight);
}
a.pagelink {
font-size: 125%;
padding: 15px 50px 15px 80px;
display: block;
}
a.backbutton {
font-style: normal;
font-size: 80%;
text-decoration: none;
padding: 0px;
}
|