My personal website.
1:root {
2 font-family: "Courier New", Courier, monospace;
3 --black: #000;
4 --grey: #4e505c;
5 --orange: #fc9156;
6 --yellow: #ffe75a;
7 --white: #eceee1;
8}
9
10body {
11 background-color: var(--black);
12}
13
14ul {
15 list-style: ":: ";
16 padding-left: 3ch;
17}
18
19h1 {
20 font-size: clamp(1.5rem, 1.8vw, 2rem);
21}
22
23h2,
24h3 {
25 margin-bottom: 13px;
26}
27
28h2 {
29 font-size: 1.5rem;
30}
31
32p,
33li {
34 font-size: 1rem;
35 line-height: 1.5rem;
36}
37
38p {
39 margin: 13px 0;
40}
41
42a {
43 font-size: 1rem;
44 color: var(--yellow);
45 text-decoration: underline dashed;
46 text-underline-offset: 4px;
47}
48
49a:hover {
50 color: var(--orange);
51}
52
53.bwcontainer {
54 background-color: var(--black);
55 border: 10px double var(--white);
56}
57
58.bwbox {
59 color: var(--white);
60 background-color: var(--black);
61 border: 10px double var(--white);
62 padding: 13px 15px;
63}
64
65.center {
66 text-align: center;
67 vertical-align: middle;
68}
69
70.flex {
71 display: flex;
72 flex-wrap: wrap;
73}
74
75.barcodetext {
76 font-family: barcodetext;
77}
78
79@font-face {
80 font-family: barcodetext;
81 src: url("/fonts/LibreBarcode39ExtendedText-Regular.woff");
82}