mirror of
https://github.com/Steffo99/festa.git
synced 2024-12-22 14:44:21 +00:00
23 lines
410 B
CSS
23 lines
410 B
CSS
.postcard {
|
|
width: 100vw;
|
|
height: 100vh;
|
|
object-fit: cover;
|
|
|
|
position: absolute;
|
|
z-index: -1;
|
|
|
|
user-select: none;
|
|
pointer-events: none;
|
|
}
|
|
|
|
@media (prefers-color-scheme: light) {
|
|
.postcard {
|
|
filter: blur(16px) contrast(25%) brightness(175%);
|
|
}
|
|
}
|
|
|
|
@media (prefers-color-scheme: dark) {
|
|
.postcard {
|
|
filter: blur(16px) contrast(50%) brightness(50%);
|
|
}
|
|
}
|