add fallback for old browsers

This commit is contained in:
jbb01 2024-09-17 09:08:27 +02:00
parent fd1fde6be0
commit 1cff5b5d1b

View File

@ -133,3 +133,13 @@ body {
text-decoration: none; text-decoration: none;
user-select: none; user-select: none;
} }
@supports not (background: conic-gradient(from 0deg in hsl longer hue, red 0 0)) {
html::before {
background: linear-gradient(-45deg, #204000 0%, #404000 100%);
}
.link-content::before, .link-content::after {
background: white;
}
}