fix: Remove web background

This commit is contained in:
Krille 2023-12-11 15:18:17 +01:00
parent 80f6351aaf
commit f1db2b9781
No known key found for this signature in database

View file

@ -1,8 +1,8 @@
body, html { body,
margin:0; html {
height:100%; margin: 0;
height: 100%;
background: #ffffff; background: #ffffff;
background-image: url("img/light-background.png");
background-size: 100% 100%; background-size: 100% 100%;
} }
@ -16,26 +16,29 @@ body, html {
} }
.contain { .contain {
display:block; display: block;
width:100%; height:100%; width: 100%;
height: 100%;
object-fit: contain; object-fit: contain;
} }
.stretch { .stretch {
display:block; display: block;
width:100%; height:100%; width: 100%;
height: 100%;
} }
.cover { .cover {
display:block; display: block;
width:100%; height:100%; width: 100%;
height: 100%;
object-fit: cover; object-fit: cover;
} }
@media (prefers-color-scheme: dark) { @media (prefers-color-scheme: dark) {
body { body {
margin:0; margin: 0;
height:100%; height: 100%;
background: #000000; background: #000000;
background-image: url("img/dark-background.png"); background-image: url("img/dark-background.png");
background-size: 100% 100%; background-size: 100% 100%;