18 lines
236 B
CSS
18 lines
236 B
CSS
body {
|
|
margin: 0;
|
|
background-color: white;
|
|
}
|
|
|
|
@media (prefers-color-scheme: dark) {
|
|
body {
|
|
margin: 0;
|
|
background-color: black;
|
|
}
|
|
}
|
|
|
|
.fullscreen {
|
|
width: 100%;
|
|
height: 100%;
|
|
|
|
cursor: pointer;
|
|
} |