PostText/assets/css/elements.css

36 lines
689 B
CSS
Raw Normal View History

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;
--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-05-27 03:48:50 +00:00
}
*, ::before, ::after { box-sizing: inherit; }
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;
}
code {
background-color: black;
color: lime;
font-size: 0.75rem; /* Why tho?? */
}
pre > code {
white-space: pre-wrap;
padding: 0.5em 1em;
display: inline-block;
width: 100%;
}