update background

This commit is contained in:
ArgentumCation 2024-07-10 22:51:10 -04:00
parent 0b160e941c
commit 3c83c626ea

View file

@ -73,7 +73,7 @@ let description =
window.onload = adjust;
window.onresize = adjust;
</script>
<style>
<style is:inline>
:root {
--page-width: 80em;
}
@ -95,10 +95,29 @@ let description =
margin: auto;
}
section {
margin: auto;
margin: auto !important;
}
h2 {
padding: 0;
padding: 0 !important;
}
html {
height: 100%;
}
body {
background: linear-gradient(
180deg in oklab,
var(--background-color),
85%,
var(--error-color)
);
}
footer {
text-shadow: 2px 2px 8px var(--background-color);
}
.button {
box-shadow: 2px 2px 6px var(--background-color);
}
</style>
</head>