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 {
margin:0;
height:100%;
body,
html {
margin: 0;
height: 100%;
background: #ffffff;
background-image: url("img/light-background.png");
background-size: 100% 100%;
}
@ -16,28 +16,31 @@ body, html {
}
.contain {
display:block;
width:100%; height:100%;
display: block;
width: 100%;
height: 100%;
object-fit: contain;
}
.stretch {
display:block;
width:100%; height:100%;
display: block;
width: 100%;
height: 100%;
}
.cover {
display:block;
width:100%; height:100%;
display: block;
width: 100%;
height: 100%;
object-fit: cover;
}
@media (prefers-color-scheme: dark) {
body {
margin:0;
height:100%;
margin: 0;
height: 100%;
background: #000000;
background-image: url("img/dark-background.png");
background-size: 100% 100%;
}
}
}