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
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
|
:root {
--pattern: hsl(280, 63%, 81%);
--links: hsl(280, 50%, 57%);
--background: hsl(280, 20%, 88%);
--border: 1px solid hsl(0, 0%, 20%);
--foreground: hsl(0, 0%, 0%);
}
body {
background-image: url("/images/background.svg");
background-color: var(--pattern);
background-size: 150px;
margin: 0;
font-family: "Gill Sans", sans-serif;
}
h1,
h2,
h3,
h4,
p,
ul,
ol {
margin: 0;
}
a {
color: var(--links);
text-decoration: underline dotted;
}
a:hover {
opacity: 80%;
text-decoration: underline solid;
}
a.button,
a.button:hover {
text-decoration: none;
}
a.button:hover img {
opacity: 80%;
}
img.pixel {
image-rendering: pixelated;
}
div.page-container {
color: var(--foreground);
height: calc(100vh - 20px);
width: calc(100vw - 20px);
display: grid;
grid-template-columns: minmax(auto, 400px) minmax(50vw, auto);
grid-template-rows: 1fr;
grid-column-gap: 1vw;
grid-row-gap: 0px;
}
div.page-container > div:first-child > div:first-child {
margin-top: 0;
}
div.page-container > div:first-child > div:last-child {
margin-bottom: 0;
}
div.page-container {
margin: 10px;
}
div.page-container > div:first-child > div {
margin: 10px 0;
}
div.page-container > div:nth-child(2),
div.page-container > div:first-child > div,
div.page-container > div:last-child {
padding: 10px;
height: auto;
background-color: var(--background);
border: var(--border);
}
div.page-container > div:first-child {
height: fit-content;
height: auto;
}
div.page-container > div:first-child,
div.page-container > div:nth-child(2) {
overflow: scroll;
}
div.page-container > div.footer {
grid-area: 2 / 1 / 3 / 3;
margin-top: 10px;
display: grid;
grid-template-columns: repeat(2, 1fr);
grid-template-rows: 1fr;
grid-column-gap: 0;
grid-row-gap: 0;
}
div.footer > div:first-child {
margin-left: 5px;
}
div.footer > div:last-child {
text-align: right;
}
div.footer > div {
vertical-align: middle;
height: fit-content;
width: 100%;
margin: auto;
}
div.pa .navlinks {
padding-left: 10px;
}
.navbar-icon {
margin-right: 0.25em;
}
.online-status {
display: inline;
}
|