blob: 9ae0ce8248dcc2c830d8de90d087190531a567c3 (
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
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
131
132
133
134
135
136
137
|
/* Generated by Squirrel Font */
@font-face {
font-family: 'zai_courier_polski_1941Rg';
src: url('../fonts/courier_polski_1941/webkit/zai_courierpolski1941-webfont.woff2') format('woff2'),
url('../fonts/courier_polski_1941/webkit/zai_courierpolski1941-webfont.woff') format('woff');
font-weight: normal;
font-style: normal;
}
@font-face {
font-family: 'schizoid_personalityregular';
src: url('../fonts/schizoid_personality/webkit/schizoid_personality-webfont.woff2') format('woff2'),
url('../fonts/schizoid_personality/webkit/schizoid_personality-webfont.woff') format('woff');
font-weight: normal;
font-style: normal;
}
/* */
body {
padding: 0;
margin: 0;
}
ul li {
list-style-type: '- ';
}
#content {
margin: 1%;
}
#top-bar {
padding: 1%;
margin: 0;
display: flex;
flex-direction: row;
flex-wrap: wrap;
justify-content: space-between;
align-items: center;
align-content: center;
height: 5vw;
background-color: black;
color: white;
position: -webkit-sticky;
position: sticky;
top: 0;
font-family: 'zai_courier_polski_1941Rg', 'Courier New', Courier, monospace;
}
#top-bar h1 {
margin: 0;
padding: 0;
text-align: left;
font-size: 5vw;
display: inline;
float: left;
}
#top-bar a {
color: inherit;
text-decoration: none;
}
#top-bar li {
list-style: none;
display: inline;
float: none;
}
#top-bar li a::before {
content: "[";
}
#top-bar li a::after {
content: "]";
}
#bottom-bar {
padding: 1%;
margin: 0;
height: 2vw;
width: 100vw;
background-color: black;
color: white;
position: fixed;
bottom: 0;
list-style-type: none;
font-family: 'zai_courier_polski_1941Rg', 'Courier New', Courier, monospace;
text-align: center;
overflow: auto; /* Idk why this is "overflowing" but this should be a good enough fix fow now */
}
#bottom-flex {
display: flex;
justify-content: center;
align-items: center;
}
#bottom-bar a {
color: inherit;
text-decoration: none;
font-weight: bold;
}
/* Surround links with square brackets in the footer */
#bottom-bar a::before {
content: "[";
}
#bottom-bar a::after {
content: "]";
}
#bottom-bar li {
display: inline;
float: none;
}
#copyrightnotice {
display: inline-block;
font-size: 75%;
color: rgba(255, 255, 255, 0.15);
}
|