global.css
ASCII text
1@import url("/fonts/inter/inter.css"); 2@import url("/fonts/mononoki/mononoki.css"); 3 4body, 5html { 6margin: 0; 7width: 100vw; 8font-size: 95%; 9font-family: "Inter"; 10} 11 12body { 13background-image: url("/Background.webp"); 14background-color: #000; 15color: #fff; 16} 17 18:any-link { 19color: #9a9af0; 20} 21 22:any-link:active { 23color: #f09a9a; 24} 25 26main { 27padding: 8px; 28box-sizing: border-box; 29max-width: 60vw; 30margin: 0 auto; 31background-color: #19191b; 32} 33 34.breadcrumbs { 35list-style: none; 36padding: 8px; 37box-sizing: border-box; 38margin: 16px auto 8px auto; 39width: 60vw; 40border: 1px solid black; 41background-color: #19191b; 42} 43 44.breadcrumbs li { 45display: inline-block; 46} 47 48.breadcrumbs li + li::before { 49content: "\00A5"; 50} 51 52body > header { 53display: flex; 54padding: 20px; 55box-sizing: border-box; 56align-items: center; 57width: 60vw; 58margin: 0 auto; 59background-color: #0b0b0c; 60border-bottom: 1px solid #fff; 61} 62 63body > header :any-link { 64color: #f1f1f1 !important; 65font-style: italic; 66text-decoration: none; 67} 68 69body > header h2 { 70flex: 1; 71font-size: large; 72margin: 0; 73} 74 75body > header nav { 76font-size: large; 77} 78 79body > header nav :any-link:not(:last-child) { 80margin-right: 15px; 81} 82 83tr > :not(:last-child) { 84padding-right: 15px; 85} 86 87body > footer { 88display: flex; 89align-items: first baseline; 90margin: 8px auto; 91margin-top: 12px; 92width: 60vw; 93padding-top: 3px; 94box-sizing: border-box; 95background-color: #19191b; 96border-top: 1px currentColor solid; 97} 98 99.footer-link-list-holder { 100flex: 1; 101} 102 103.footer-link-list { 104list-style: none; 105padding-left: 0; 106margin: 0; 107} 108 109.footer-link-list-label { 110font-weight: 900; 111font-size: 1.05rem; 112} 113 114img { 115image-rendering: optimizeQuality; 116} 117 118abbr :any-link { 119text-decoration-style: dotted; 120text-decoration-color: currentColor; 121} 122 123abbr:has(:any-link) { 124text-decoration: none; 125} 126 127kbd { 128white-space: pre-wrap; 129font-family: "mononoki", monospace; 130display: inline-block; 131font-size: .85rem; 132} 133 134:not(samp) kbd:not(:has(kbd)) { 135background-color: #222728; 136color: currentColor; 137border: currentColor 1px solid; 138border-radius: 10px; 139padding: 5px; 140margin: 1px 0; 141} 142 143samp kbd { 144display: block; 145} 146 147samp { 148background-color: #282722; 149color: #fff; 150font-family: "mononoki", monospace; 151padding: 10px; 152display: block; 153font-size: .85rem; 154white-space: pre-wrap; 155} 156