Home Page: Difference between revisions
From abexilas.skywiki.org
No edit summary |
No edit summary |
||
Line 30: | Line 30: | ||
|} | |} | ||
/* Dark mode styles for the specific image */ | |||
@media (prefers-color-scheme: dark) { | |||
/* Target the image using its exact URL */ | |||
img[src$="File:1111111111111111111.png"] { | |||
filter: invert(1); | |||
background-color: #000; /* Prevent light background halos */ | |||
} | |||
} |
Revision as of 22:31, 5 December 2024
Welcome to The Independent Archive of Abexilas!
|
|
/* Dark mode styles for the specific image */ @media (prefers-color-scheme: dark) {
/* Target the image using its exact URL */ img[src$="File:1111111111111111111.png"] { filter: invert(1); background-color: #000; /* Prevent light background halos */ }
}