style.css
ASCII text
1/* Colors */ 2 3:root { 4--secondary: #f9a911; 5--teriary: #efee00; 6} 7 8/* Styles */ 9 10:root { 11font-family: "Gully", sans-serif; 12} 13 14html { 15background-image: linear-gradient(to left, #f7f, #f77, #fc7, #ff7, #7f7, #7cf, #77f, #c7f, #f7f); 16background-size: 50%; 17} 18 19:is(h1, h2, h3, h4, h5, h6) { 20font-family: "Willow", sans-serif; 21font-weight: lighter; 22} 23 24:any-link { 25background: linear-gradient( 2690deg, 27rgb(255, 150, 150) 0%, 28rgb(255, 194, 102) 10%, 29rgb(244, 255, 107) 20%, 30rgb(176, 253, 173) 30%, 31rgb(155, 255, 254) 40%, 32rgb(192, 246, 255) 50%, 33rgb(96, 172, 255) 60%, 34rgb(138, 79, 255) 70%, 35rgb(217, 110, 255) 80%, 36rgb(255, 126, 237) 90%, 37rgb(255, 145, 145) 100% 38); 39background-clip: text; 40-webkit-text-fill-color: transparent; 41} 42 43th, 44td { 45text-align: center; 46} 47 48#ThemeList { 49padding: 0; 50margin: 0; 51} 52 53#ThemeList li { 54width: fit-content; 55display: inline-block; 56list-style: none; 57 58} 59