Compare commits
4 commits
e63b5f33ff
...
c07b5d8f48
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
c07b5d8f48 | ||
|
|
8d5e495be2 | ||
|
|
1c128fd902 | ||
|
|
dd94fadf09 |
1 changed files with 18 additions and 16 deletions
|
|
@ -71,12 +71,29 @@
|
||||||
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 */
|
||||||
|
|
@ -94,21 +111,6 @@ 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: "";
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue