PostText/assets/css/elements.css
2023-06-04 22:21:33 -04:00

48 lines
961 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);
}
*, ::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-size: 0.75rem; /* Why tho?? */
font-family: "fsex300", monospace;
}
pre > code {
white-space: pre-wrap;
padding: 0.5em 1em;
display: inline-block;
width: 100%;
}