41 lines
513 B
CSS
41 lines
513 B
CSS
body {
|
|
margin: 0;
|
|
background-color: white;
|
|
}
|
|
|
|
.content {
|
|
position: absolute;
|
|
|
|
width: 100%;
|
|
height: 100%;
|
|
|
|
z-index: -69;
|
|
}
|
|
|
|
@media (prefers-color-scheme: dark) {
|
|
body {
|
|
background-color: black;
|
|
}
|
|
|
|
.content {
|
|
color: white;
|
|
}
|
|
}
|
|
|
|
.fullscreen {
|
|
position: fixed;
|
|
|
|
top: 50%;
|
|
left: 50%;
|
|
|
|
width: 100%;
|
|
height: 100%;
|
|
|
|
-webkit-user-select: none;
|
|
user-select: none;
|
|
|
|
-webkit-transform: translate(-50%, -50%);
|
|
transform: translate(-50%, -50%);
|
|
|
|
cursor: pointer;
|
|
} |