blob: ddd08d540c7c6ecba9cbcbd1ee3a2b4069d3952a [file] [log] [blame]
Serge Bazanski717aad42021-07-11 16:03:43 +00001:root {
radexd88a2e22021-08-30 19:36:03 +02002 --primary: #7347d9ff;
3 --primary100: #cfbff1;
4 --secondary: #d947adff;
5 --secondary50: #fae2f0;
6 --darkbgaccent: #1a1622ff;
7 --darkbg: #121212ff;
8 --darkbgalpha: #121212f8;
Serge Bazanski717aad42021-07-11 16:03:43 +00009}
10
11html {
radexd88a2e22021-08-30 19:36:03 +020012 min-height: 100%;
Serge Bazanski717aad42021-07-11 16:03:43 +000013}
14
Serge Bazanski4d7b2f02021-05-31 22:33:51 +000015body {
radexd88a2e22021-08-30 19:36:03 +020016 min-height: 100%;
Serge Bazanski717aad42021-07-11 16:03:43 +000017
radexd88a2e22021-08-30 19:36:03 +020018 margin: 0;
19 padding: 0;
20 color: #fffdf3;
21 font-weight: 400;
22 font-family: "Inconsolata", monospace;
23 font-size: 20px;
24 line-height: 120%;
Serge Bazanski717aad42021-07-11 16:03:43 +000025
radexd88a2e22021-08-30 19:36:03 +020026 background-color: var(--darkbgaccent);
Serge Bazanski717aad42021-07-11 16:03:43 +000027}
28
29@media screen and (max-width: 1000px) {
radexd88a2e22021-08-30 19:36:03 +020030 body {
31 font-size: 18px;
32 }
Serge Bazanski717aad42021-07-11 16:03:43 +000033}
34
35#ledsFloater {
radexd88a2e22021-08-30 19:36:03 +020036 position: absolute;
37 top: 0;
38 left: 0;
39 width: 100%;
40 min-height: 100%;
41 overflow-x: hidden;
42 z-index: -11;
Serge Bazanski717aad42021-07-11 16:03:43 +000043}
44
45#ledsWrapper {
radexd88a2e22021-08-30 19:36:03 +020046 float: left; /* oh god */
47 width: 100%;
48 min-height: 100%;
Serge Bazanski717aad42021-07-11 16:03:43 +000049}
50
51#leds {
radexd88a2e22021-08-30 19:36:03 +020052 width: max(60vw, 600px);
53 height: max(60vw, 600px);
54 transform: rotate(-15deg);
55 position: relative;
56 top: min(-10vw, -100px);
57 left: min(-10vw, -100px);
58 z-index: -10;
Serge Bazanski4d7b2f02021-05-31 22:33:51 +000059}
60
61#page {
radexd88a2e22021-08-30 19:36:03 +020062 max-width: 60rem;
63 margin: 6em auto 2em auto;
64 background-color: var(--darkbgalpha);
Serge Bazanski383fefa2021-06-02 00:57:33 +000065
radexd88a2e22021-08-30 19:36:03 +020066 display: flex;
67 flex-direction: column;
Serge Bazanski383fefa2021-06-02 00:57:33 +000068}
69
Serge Bazanski717aad42021-07-11 16:03:43 +000070@media screen and (max-width: 1000px) {
radexd88a2e22021-08-30 19:36:03 +020071 #page {
72 background-color: #121212f0;
73 }
Serge Bazanski717aad42021-07-11 16:03:43 +000074}
75
76.about img {
radexd88a2e22021-08-30 19:36:03 +020077 width: 100%;
78 display: block;
79 margin: 0 auto;
Serge Bazanski717aad42021-07-11 16:03:43 +000080}
81
radexd88a2e22021-08-30 19:36:03 +020082#top {
83 display: flex;
84 flex-direction: row;
85 flex-flow: row wrap;
86 height: 10em;
87 margin: 2em 0 1em 0;
88 justify-content: center;
Serge Bazanski383fefa2021-06-02 00:57:33 +000089}
90
Serge Bazanski717aad42021-07-11 16:03:43 +000091@media screen and (max-width: 1000px) {
radexd88a2e22021-08-30 19:36:03 +020092 #top {
93 margin: 1em 0 1em 0;
94 }
Serge Bazanski383fefa2021-06-02 00:57:33 +000095}
96
radexd88a2e22021-08-30 19:36:03 +020097#logo,
98#logo > img {
99 height: 100%;
100}
101
102@media screen and (max-width: 600px) {
103 #top {
104 height: 5em;
105 }
106
107 #top .type {
108 font-size: 18px;
109 }
110}
111
112#top .type {
113 max-width: 15em;
114 font-size: min(35px, 2.5vw);
115 margin-left: 1em;
116 line-height: 1;
117 display: flex;
118 flex-direction: column;
119 justify-content: center;
120}
121
122#top .type h1 {
123 padding: 0 0 0.5em 0.2em;
124 font-family: "Comfortaa", sans-serif;
125 color: #fff;
126 text-shadow: 0 0 1px var(--secondary), 0 0 5px var(--secondary),
127 0 0 20px var(--secondary);
128 font-size: 60px;
129 animation: neon ease-in-out 4s infinite alternate, blink 10s infinite;
130}
131
132@keyframes neon {
133 from {
134 text-shadow: 0 0 1px var(--secondary), 0 0 3px var(--secondary),
135 0 0 15px var(--secondary);
136 }
137 to {
138 text-shadow: 0 0 1px var(--secondary), 0 0 15px var(--secondary),
139 0 0 40px var(--secondary);
140 }
141}
142@keyframes blink {
143 0% {
144 opacity: 1;
145 }
146 80% {
147 opacity: 1;
148 }
149 81% {
150 opacity: 0.2;
151 }
152 85% {
153 opacity: 0.2;
154 }
155 86% {
156 opacity: 1;
157 }
158 94% {
159 opacity: 1;
160 }
161 95% {
162 opacity: 0.4;
163 }
164 95.7% {
165 opacity: 0.4;
166 }
167 96% {
168 opacity: 1;
169 }
Serge Bazanski383fefa2021-06-02 00:57:33 +0000170}
171
Serge Bazanski717aad42021-07-11 16:03:43 +0000172@media screen and (max-width: 1000px) {
radexd88a2e22021-08-30 19:36:03 +0200173 #top .type h1 {
174 font-size: 40px;
175 }
Serge Bazanski383fefa2021-06-02 00:57:33 +0000176}
177
radexd88a2e22021-08-30 19:36:03 +0200178@media screen and (max-width: 600px) {
179 #top .type h1 {
180 font-size: 24px;
181 }
Serge Bazanski717aad42021-07-11 16:03:43 +0000182}
183
Serge Bazanski383fefa2021-06-02 00:57:33 +0000184#map {
radexd88a2e22021-08-30 19:36:03 +0200185 height: 28em;
Serge Bazanski383fefa2021-06-02 00:57:33 +0000186}
187
radexd88a2e22021-08-30 19:36:03 +0200188#quicklinks {
189 font-size: 16px;
190 background-color: rgba(255, 255, 255, 0.05);
Serge Bazanski717aad42021-07-11 16:03:43 +0000191}
192
193@media screen and (max-width: 1000px) {
radexd88a2e22021-08-30 19:36:03 +0200194 #quicklinks {
195 font-size: 14px;
196 }
Serge Bazanski717aad42021-07-11 16:03:43 +0000197}
198
radexd88a2e22021-08-30 19:36:03 +0200199#quicklinks ul {
200 padding: 0;
201 margin: 0;
202 display: flex;
203 flex-direction: row;
204 flex-flow: row wrap;
205 justify-content: center;
206 font-family: "Comfortaa", sans-serif;
Serge Bazanski717aad42021-07-11 16:03:43 +0000207}
208
radexd88a2e22021-08-30 19:36:03 +0200209#quicklinks ul li {
210 display: flex;
Serge Bazanski717aad42021-07-11 16:03:43 +0000211}
212
radexd88a2e22021-08-30 19:36:03 +0200213#quicklinks ul li.left {
214 flex-grow: 1;
215 font-style: italic;
Serge Bazanski717aad42021-07-11 16:03:43 +0000216}
217
radexd88a2e22021-08-30 19:36:03 +0200218#quicklinks a {
219 text-decoration: none;
220 padding: 0.8rem 1rem;
221 color: #fff;
222}
223#quicklinks a:hover {
224 color: #fff;
Serge Bazanski717aad42021-07-11 16:03:43 +0000225}
226
radexd88a2e22021-08-30 19:36:03 +0200227#quicklinks li:not(.left) a:hover {
228 background-color: rgba(255, 255, 255, 0.05);
Serge Bazanski383fefa2021-06-02 00:57:33 +0000229}
230
231.covid {
radexd88a2e22021-08-30 19:36:03 +0200232 padding: 1rem 2rem;
233 background-color: rgba(150, 0, 0, 0.8);
234 font-size: 18px;
235 font-style: italic;
Serge Bazanski383fefa2021-06-02 00:57:33 +0000236}
237
238.bottom {
radexd88a2e22021-08-30 19:36:03 +0200239 display: flex;
240 flex-direction: column;
241 padding: 1em 1em 0 1em;
Serge Bazanski717aad42021-07-11 16:03:43 +0000242}
243
244@media screen and (max-width: 1000px) {
radexd88a2e22021-08-30 19:36:03 +0200245 .bottom {
246 padding: 2em 1em 0 1em;
247 }
Serge Bazanski383fefa2021-06-02 00:57:33 +0000248}
249
250.bottom .about {
radexd88a2e22021-08-30 19:36:03 +0200251 padding: 1rem 2em 3rem 2em;
Serge Bazanski383fefa2021-06-02 00:57:33 +0000252}
253
Serge Bazanski717aad42021-07-11 16:03:43 +0000254@media screen and (max-width: 1000px) {
radexd88a2e22021-08-30 19:36:03 +0200255 .bottom .about {
256 padding: 0rem 0em 1rem 0em;
257 }
Serge Bazanski717aad42021-07-11 16:03:43 +0000258}
259
Serge Bazanski717aad42021-07-11 16:03:43 +0000260.bottom .about li + li {
radexd88a2e22021-08-30 19:36:03 +0200261 margin-top: 0.5em;
Serge Bazanski4d7b2f02021-05-31 22:33:51 +0000262}
263
264p {
radexd88a2e22021-08-30 19:36:03 +0200265 text-align: left;
266 color: #eee;
Serge Bazanski4d7b2f02021-05-31 22:33:51 +0000267}
268
Serge Bazanski4d7b2f02021-05-31 22:33:51 +0000269h2 {
radexd88a2e22021-08-30 19:36:03 +0200270 margin-bottom: 0;
Serge Bazanski4d7b2f02021-05-31 22:33:51 +0000271}
272
Serge Bazanski717aad42021-07-11 16:03:43 +0000273@media screen and (max-width: 1000px) {
radexd88a2e22021-08-30 19:36:03 +0200274 h2 {
275 margin: 0;
276 }
Serge Bazanski717aad42021-07-11 16:03:43 +0000277}
278
279* + h2 {
radexd88a2e22021-08-30 19:36:03 +0200280 margin: 2rem 0 0 0;
Serge Bazanski717aad42021-07-11 16:03:43 +0000281}
282
283h2 + * {
radexd88a2e22021-08-30 19:36:03 +0200284 margin: 1rem 0 0 0;
Serge Bazanski717aad42021-07-11 16:03:43 +0000285}
286
287h2 {
radexd88a2e22021-08-30 19:36:03 +0200288 font-size: 26px;
289 display: inline-block;
290 font-family: "Comfortaa", sans-serif;
Serge Bazanski717aad42021-07-11 16:03:43 +0000291}
292h2:after {
radexd88a2e22021-08-30 19:36:03 +0200293 content: " ";
294 display: block;
295 background-color: var(--secondary);
296 height: 0.15em;
297 width: 100%;
298 margin-top: 0.1em;
299 margin-left: 0.3em;
Serge Bazanski717aad42021-07-11 16:03:43 +0000300}
301h3 {
radexd88a2e22021-08-30 19:36:03 +0200302 font-size: 20px;
Serge Bazanski4d7b2f02021-05-31 22:33:51 +0000303}
304
305pre {
radexd88a2e22021-08-30 19:36:03 +0200306 background-color: #141000;
307 padding: 1rem;
Serge Bazanski4d7b2f02021-05-31 22:33:51 +0000308}
309
310a {
radexd88a2e22021-08-30 19:36:03 +0200311 text-decoration: underline;
312 text-decoration-color: var(--primary100);
313 color: #fff;
Serge Bazanski717aad42021-07-11 16:03:43 +0000314}
315
316a:hover {
radexd88a2e22021-08-30 19:36:03 +0200317 color: var(--primary100);
Serge Bazanski4d7b2f02021-05-31 22:33:51 +0000318}
319
320b {
radexd88a2e22021-08-30 19:36:03 +0200321 font-weight: 800;
Serge Bazanski4d7b2f02021-05-31 22:33:51 +0000322}
323
324ul {
radexd88a2e22021-08-30 19:36:03 +0200325 padding: 0 0 0 1em;
Serge Bazanski4d7b2f02021-05-31 22:33:51 +0000326}
327
Serge Bazanski717aad42021-07-11 16:03:43 +0000328@media screen and (max-width: 1000px) {
radexd88a2e22021-08-30 19:36:03 +0200329 ul {
330 padding: 0;
331 }
Serge Bazanski717aad42021-07-11 16:03:43 +0000332}
333
Serge Bazanski4d7b2f02021-05-31 22:33:51 +0000334li {
radexd88a2e22021-08-30 19:36:03 +0200335 list-style: none;
Serge Bazanski4d7b2f02021-05-31 22:33:51 +0000336}
337
338li i {
radexd88a2e22021-08-30 19:36:03 +0200339 font-size: 0.9em;
Serge Bazanski4d7b2f02021-05-31 22:33:51 +0000340}
341
342#footer {
radexd88a2e22021-08-30 19:36:03 +0200343 margin: 1rem 0 0 0;
344 font-size: 0.8rem;
345 opacity: 60%;
Serge Bazanski4d7b2f02021-05-31 22:33:51 +0000346}
347
Serge Bazanskid2271de2021-07-11 21:26:37 +0000348.atlist {
radexd88a2e22021-08-30 19:36:03 +0200349 display: inline;
350 list-style: none;
Serge Bazanskid2271de2021-07-11 21:26:37 +0000351}
352
353.atlist li {
radexd88a2e22021-08-30 19:36:03 +0200354 display: inline;
Serge Bazanskid2271de2021-07-11 21:26:37 +0000355}
356
357.atlist li:after {
radexd88a2e22021-08-30 19:36:03 +0200358 content: ", ";
Serge Bazanskid2271de2021-07-11 21:26:37 +0000359}
360
361.atlist li:last-child:after {
radexd88a2e22021-08-30 19:36:03 +0200362 content: ".";
Serge Bazanski4d7b2f02021-05-31 22:33:51 +0000363}