PostText/assets/css/elements.css
2023-06-04 23:01:37 -04:00

50 lines
1,018 B
CSS

: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;
--transparent: #FFFFFFBB;
box-sizing: border-box;
font-size: calc(10px + 1vmin);
cursor: url('/cursors/arrow.cur'), auto;
}
*, ::before, ::after { box-sizing: inherit; }
@font-face {
font-family: 'w95fa';
src: url('/fonts/w95fa.woff2') format('woff2');
}
@font-face {
font-family: 'fsex300';
src: url('/fonts/fsex300.woff2') format('woff2');
}
body {
background-image: url('/images/background_stars_anm.gif');
width: 95vmin;
margin: 0 auto;
font-family: 'w95fa', sans-serif;
}
code {
background-color: black;
color: lime;
font-family: "fsex300", monospace;
}
pre > code {
white-space: pre-wrap;
padding: 0.5em 1em;
display: inline-block;
width: 100%;
}
a:hover { cursor: url('/cursors/finger.cur'), auto; }