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: "Stampello Faceto"; 16src: url("StampatelloFaceto.otf") 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: "Stampello Faceto"; 35width: 45vw; 36margin: 0 auto; 37padding: 35px; 38height: calc(100% - 70px); 39box-shadow: 0px 0px 50px #000; 40} 41 42html { 43background-image: url("./bg3.webp"); 44background-color: #FFF; 45height: 100%; 46} 47 48:is(h1, h2, h3, h4, h5, h6) { 49font-family: "Yeast"; 50} 51 52:any-link { 53background: linear-gradient( 5490deg, 55rgb(255, 150, 150) 0%, 56rgb(255, 194, 102) 10%, 57rgb(244, 255, 107) 20%, 58rgb(176, 253, 173) 30%, 59rgb(155, 255, 254) 40%, 60rgb(192, 246, 255) 50%, 61rgb(96, 172, 255) 60%, 62rgb(138, 79, 255) 70%, 63rgb(217, 110, 255) 80%, 64rgb(255, 126, 237) 90%, 65rgb(255, 145, 145) 100% 66); 67background-clip: text; 68-webkit-text-fill-color: transparent; 69} 70 71th, 72td { 73text-align: center; 74} 75 76#ThemeList { 77padding: 0; 78margin: 0; 79} 80 81#ThemeList li { 82width: fit-content; 83display: inline-block; 84list-style: none; 85 86} 87 88code { 89background-color: var(--primary-code); 90display: inline-block; 91font-family: "RH Mono"; 92} 93 94code:has(pre) { 95display: block; 96padding: 5px; 97} 98 99[aria-label=breadcrumbs] ol { 100padding: 0; 101} 102 103[aria-label=breadcrumbs] li { 104list-style: none; 105display: inline-block; 106} 107 108[aria-label=breadcrumbs] li + li::before { 109content: " / "; 110} 111