style.css
ASCII text
1/* Colors */ 2 3:root { 4--secondary: #f9a911; 5--teriary: #efee00; 6} 7 8/* Styles */ 9 10:root { 11font-family: "Roboto", 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: "Roboto", sans-serif; 21font-weight: lighter; 22} 23 24:any-link { 25--color1: #19004B; 26--color2: #00194B; 27--color3: #000064; 28--colora: #080854; 29background: linear-gradient( 3090deg, 31var(--color1), 32var(--color2), 33var(--color3) 34); 35color: var(--colora); 36background-clip: text; 37-webkit-text-fill-color: transparent; 38transition: 500ms color, 500ms background; 39} 40 41:any-link:is(:hover,:visited) { 42--color1: #35005B; 43--color2: #00355B; 44--color3: #000084; 45--colora: #0E0E6e; 46} 47 48:any-link:active { 49--color1: #4B0019; 50--color2: #4B1900; 51--color3: #640000; 52--colora: #540808; 53} 54 55th, 56td { 57text-align: center; 58} 59 60#ThemeList { 61padding: 0; 62margin: 0; 63} 64 65#ThemeList li { 66width: fit-content; 67display: inline-block; 68list-style: none; 69 70} 71 72summary { font-weight: bold; } 73