2023-05-27 03:48:50 +00:00
|
|
|
:root {
|
|
|
|
--light-warm-gray: #C2B3A9;
|
|
|
|
--dark-warm-gray: #A59990;
|
|
|
|
--teal: #5B90A4;
|
|
|
|
--light-blue: #8C97A8;
|
|
|
|
--dark-blue: #696F80;
|
|
|
|
--true-gray: #999999;
|
|
|
|
--highlight-green: green;
|
|
|
|
--highlight-red: red;
|
2023-05-28 04:42:07 +00:00
|
|
|
--transparent: #FFFFFFBB;
|
2023-05-27 03:48:50 +00:00
|
|
|
|
|
|
|
box-sizing: border-box;
|
2023-06-01 04:08:30 +00:00
|
|
|
font-size: calc(10px + 1vmin);
|
2023-06-05 03:01:37 +00:00
|
|
|
cursor: url('/cursors/arrow.cur'), auto;
|
2023-05-27 03:48:50 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
*, ::before, ::after { box-sizing: inherit; }
|
|
|
|
|
2023-06-05 02:21:33 +00:00
|
|
|
@font-face {
|
|
|
|
font-family: 'w95fa';
|
|
|
|
src: url('/fonts/w95fa.woff2') format('woff2');
|
|
|
|
}
|
|
|
|
|
|
|
|
@font-face {
|
|
|
|
font-family: 'fsex300';
|
|
|
|
src: url('/fonts/fsex300.woff2') format('woff2');
|
|
|
|
}
|
|
|
|
|
2023-05-27 03:48:50 +00:00
|
|
|
body {
|
2023-05-27 04:54:49 +00:00
|
|
|
background-image: url('/images/background_stars_anm.gif');
|
2023-05-27 03:48:50 +00:00
|
|
|
width: 95vmin;
|
|
|
|
margin: 0 auto;
|
2023-06-05 02:21:33 +00:00
|
|
|
font-family: 'w95fa', sans-serif;
|
2023-05-27 03:48:50 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
code {
|
|
|
|
background-color: black;
|
|
|
|
color: lime;
|
2023-06-05 02:21:33 +00:00
|
|
|
font-family: "fsex300", monospace;
|
2023-05-27 03:48:50 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
pre > code {
|
|
|
|
white-space: pre-wrap;
|
|
|
|
padding: 0.5em 1em;
|
|
|
|
display: inline-block;
|
|
|
|
width: 100%;
|
2023-07-08 04:52:11 +00:00
|
|
|
overflow-wrap: anywhere;
|
2023-05-27 03:48:50 +00:00
|
|
|
}
|
2023-06-05 03:01:37 +00:00
|
|
|
|
2023-07-13 02:22:12 +00:00
|
|
|
a:hover, button { cursor: url('/cursors/finger.cur'), auto; }
|
2023-06-14 15:38:04 +00:00
|
|
|
|
|
|
|
img { max-width: 100%; }
|
2023-06-14 16:58:40 +00:00
|
|
|
|
|
|
|
blockquote {
|
|
|
|
border-left: solid black;
|
|
|
|
padding-left: 0.25em;
|
|
|
|
}
|
2023-07-06 03:18:29 +00:00
|
|
|
|
2023-07-17 05:49:33 +00:00
|
|
|
p, h1, h2, h3, h4, h5, h6, label, code, ul, ol { cursor: text; }
|