summaryrefslogtreecommitdiff
path: root/css/base.css
blob: f65307ad01355e59aacdb027647553b239d64a35 (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
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
/* 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;

}
/* */

:root {
	--bheight: 3vw; /* min-content This feels hackey but it works & stops overflow */

	--cblack: #000000;
	--cwhite: #ffffff;
	--cgray: #232627; /* Nicer gray than previously */

	/* Color palate for the site */
	--cebony: #2e2920;
	--ctaupe: #e9e6e2;
	--corange: #f9c070;
	--ctan: #8e4c30;
}

* {
	padding: 0;
	margin: 0;
}

body {
	background-color: var(--cgray);
	color: var(--ctaupe);
	font-family: Verdana, Geneva, Tahoma, sans-serif;
}

li {
	list-style-type: '- ';
}

ul {
    padding-top: 1vw;
    padding-bottom: 1vw;
    padding-left: 2vw;
    padding-right: 2vw;
} /* Looks good for the links */

a {
	color: var(--corange);
}

.vertcontain {
    display: flex;
    flex-flow: column nowrap;

    justify-content: space-around;
    align-content: center;
}

#content {
	padding: 1vw;
	margin: 1vw;
	margin-bottom: 5vw; /* Not knowing about this was fucking annoying */

	overflow: auto;
	overflow-wrap: break-word;
}

#top-bar {
	padding: 1vw;

	/* Floats h1 and ul/li side by side */
	display: flex;
    flex-flow: row nowrap;
	justify-content: space-between;
	align-items: center;
	align-content: center;

	height: 5vw;

	background-color: var(--cblack);
	color: var(--cwhite);

	position: -webkit-sticky;
	position: sticky;
	top: 0;

	font-family: 'zai_courier_polski_1941Rg', 'Courier New', Courier, monospace;
}

#top-bar h1 {
	text-align: left;
	font-size: 5vw;
}

#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: 0.5vw;
	height: var(--bheight);
	width: 100%;

	position: fixed;
	bottom: 0;

	background-color: var(--cblack);
	color: var(--cwhite);

	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 */
	overflow: auto;
}

#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 ul {
    padding: 0;
}

#bottom-bar li {
	display: inline;
	float: none;
}

#copyrightnotice {
	display: inline-block;
	font-size: 50%;
	color: rgba(255, 255, 255, 0.15);
}