Compare commits

..

No commits in common. "c07b5d8f482df304eb0635e74598d69324ad976a" and "e63b5f33ff77ff54bd0d17f0e19d37b71e820617" have entirely different histories.

View file

@ -71,29 +71,12 @@
body { body {
font-family: var(--font-body); font-family: var(--font-body);
background-color: var(--obsidian) !important; background-color: var(--obsidian) !important;
background-image: radial-gradient(ellipse at 50% 120%, rgba(56, 189, 248, 0.06) 0%, transparent 50%) !important;
} }
/* Make background transparent ONLY on item pages to reveal the backdrop */ /* Make background transparent ONLY on item pages to reveal the backdrop */
#itemDetailPage { #itemDetailPage,
background-color: transparent !important;
}
.backgroundContainer.withBackdrop { .backgroundContainer.withBackdrop {
background-color: transparent !important; background-color: transparent !important;
filter: saturate(0.75) brightness(0.9);
}
/* Radial vignette + bottom fade: bleeds backdrop into obsidian base */
.backgroundContainer.withBackdrop::after {
content: "";
position: absolute;
inset: 0;
background:
radial-gradient(ellipse at center, transparent 20%, rgba(8, 9, 12, 0.65) 100%),
linear-gradient(to bottom, transparent 40%, #08090C 100%);
pointer-events: none;
z-index: 1;
} }
/* Allow the body background to be "pushed back" when a backdrop is present */ /* Allow the body background to be "pushed back" when a backdrop is present */
@ -111,6 +94,21 @@ h1, h2, h3, .title-rune, .itemTitle, .cardText {
/* --- Custom Background Effects --- */ /* --- Custom Background Effects --- */
/* Film grain overlay */
body::before {
content: "";
position: fixed;
inset: 0;
background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
pointer-events: none;
z-index: 100;
}
/* Hide grain on detail pages if it makes things look "dirty" */
#itemDetailPage::before {
display: none !important;
}
/* Arcane Background Circle */ /* Arcane Background Circle */
html::after { html::after {
content: ""; content: "";