@import url(/fonts/muller/muller.css); :root { /* old slightly-muted gradient */ /* --gradient: linear-gradient(135deg, hsl(42deg, 67%, 70%), hsl(348deg, 67%, 70%), hsl(334deg, 77%, 80%), hsl(234deg, 77%, 76%), hsl(195deg, 67%, 67%), hsl(155deg, 57%, 62%) ); */ /* bright colours from yummy.cricket bg */ --gradient: linear-gradient(135deg, hsl(42deg, 92%, 70%), hsl(348deg, 92%, 70%), hsl(334deg, 100%, 80%), hsl(234deg, 100%, 76%), hsl(195deg, 100%, 67%), hsl(155deg, 70%, 62%) ); --text-col: white; --text-shadow-col: hsl(0, 0%, 0%, 75%); --text-shadow: 2px 2px 3px var(--text-shadow-col); --nsfw-sticker-rotate: 15deg; --focus-box: 0 0 5px hsl(55deg, 60%, 90%, 80%); --focus-text: hsl(334deg, 87%, 90%); --border-col: var(--text-col); --border: 3px solid var(--border-col); --border-radius: 1.5em; --background: hsla(0, 0%, 0%, 60%); --button-bg: hsla(0deg, 0%, 0%, 20%); --button-bg-selected: hsla(0deg, 0%, 100%, 20%); --button-border: 1px solid hsla(0deg, 0%, 0%, 40%); --button-border-selected: 1px solid hsla(0deg, 0%, 100%, 30%); --button-pad: 0.15em 0.8em; --button-radius: 1000px; font-family: Muller; font-size: x-large; font-weight: 600; background: var(--gradient) fixed; margin: 0; } header { text-align: center; } h1 { font-weight: 300; } h2, h3, h4 { font-weight: 400; } h1 { font-size: 300%; } h2 { font-size: 125%; } h3 { font-size: 110%; } .page { background: var(--background); border: var(--border); position: relative; padding: 2em 4em; margin: 3em auto 3.5em; border-radius: var(--border-radius); color: var(--text-col); text-shadow: var(--text-shadow); } header h1 { margin: 0; padding: 0; } a { color: inherit; text-decoration: dotted underline; } a:focus { outline: none; color: var(--focus-text); text-decoration-style: double; } b { font-weight: 700; } footer { font-weight: 500; } figure > img { display: block; } .corner { display: block; margin: 0; padding: 0; position: absolute; top: 0.5em; font-size: 100%; font-weight: 500; } .corner.left { left: 2em; text-align: left; } .corner.right { right: 2em; text-align: right; } .emoji { max-height: 1.2em; vertical-align: -0.2em; } .buttonbar { padding: 0; display: flex; align-items: flex-start; flex-flow: row wrap; margin-top: 0; margin-bottom: -0.5em; } .buttonbar li { list-style: none; margin-bottom: 0.5em; } .buttonbar a { text-decoration: none; } .bb-choice { justify-content: center; } .buttonbar input { display: inline; -webkit-appearance: none; -moz-appearance: none; appearance: none; margin: 0; padding: 0; width: 0; } .buttonbar label, .bb-links li { margin-right: 0.5em; padding: var(--button-pad); background: var(--button-bg); border: var(--button-border); border-radius: var(--button-radius); } .buttonbar :focus ~ label, .bb-links li:focus-within { box-shadow: var(--focus-box); } .buttonbar :checked ~ label { background: var(--button-bg-selected); border-color: var(--button-border-selected); } summary, summary h2 { cursor: pointer; display: inline; } summary:focus-within { outline: none; } summary { list-style: none; } summary::-webkit-details-marker { display: none; } summary::after { display: inline-block; margin-left: 1.5em; padding: var(--button-pad); background: var(--button-bg); border: var(--button-border); border-radius: var(--button-radius); } summary::after { content: 'show'; } [open] summary::after { content: 'hide'; } dt { font-size: 120%; } dd { margin-left: 0; } dd + dt { margin-top: 0.5em; } .btw { font-size: 80%; font-weight: 700; } dt .btw { margin-left: 1em; } p { text-align: justify; -ms-hyphens: auto; hyphens: auto; } .threecol { columns: 3; column-gap: 2em; } .threecol dd { break-before: avoid; } *[title] { text-decoration: underline dotted; } @media (prefers-color-scheme: dark) { :root { --gradient: linear-gradient(135deg, hsl(42deg, 37%, 20%), hsl(348deg, 37%, 20%), hsl(334deg, 42%, 20%), hsl(234deg, 67%, 18%), hsl(195deg, 37%, 15%), hsl(155deg, 32%, 15%) ); --text-col: hsl(55deg, 60%, 90%); --button-bg-selected: hsla(55deg, 40%, 95%, 20%); --button-border-selected: 1px solid hsl(55deg, 60%, 90%, 40%); --button-bg: hsla(0deg, 0%, 0%, 50%); --button-border: 1px solid hsla(0deg, 0%, 100%, 40%); --border-col: black; } @media (prefers-contrast: high) { :root { --text-col: white; background: black; } body { border: unset; box-shadow: unset; background: unset; } } } @media (pointer: coarse) { .buttonbar { font-size: 200%; } }