style.css
ASCII text
1/* Colors */ 2 3:root { 4--primary: #101010; 5--secondary: #f9a911; 6--teriary: #efee00; 7 8--primary-text: #fff; 9--primary-code: #1f1f1f; 10} 11 12/* Fonts */ 13 14@font-face { 15font-family: "Gully"; 16src: url("gully.ttf") format("truetype"); 17} 18 19@font-face { 20font-family: "RH Mono"; 21src: url("RedHatMonoVF.ttf") format("truetype"); 22} 23 24@font-face { 25font-family: "Yeast"; 26src: url("yeast.otf") format("opentype"); 27} 28 29/* Styles */ 30 31body { 32background-color: var(--primary); 33color: var(--primary-text); 34font-family: "Gully"; 35} 36 37:is(h1, h2, h3, h4, h5, h6) { 38font-family: "Yeast"; 39} 40 41:any-link { 42color: var(--secondary); 43} 44 45th, 46td { 47text-align: center; 48} 49 50#ThemeList { 51padding: 0; 52margin: 0; 53} 54 55#ThemeList li { 56width: fit-content; 57display: inline-block; 58list-style: none; 59 60} 61 62code { 63background-color: var(--primary-code); 64display: inline-block; 65font-family: "RH Mono"; 66} 67 68code:has(pre) { 69display: block; 70padding: 5px; 71} 72