28 lines
369 B
CSS
28 lines
369 B
CSS
html,body {
|
|
margin: 0px;
|
|
padding: 0px;
|
|
width: 100vw;
|
|
height: 100vh;
|
|
overflow: scroll;
|
|
}
|
|
|
|
body {
|
|
display: flex;
|
|
flex-direction: column;
|
|
|
|
background-color: #20202a;
|
|
color: #eee;
|
|
|
|
font-size: large;
|
|
font-family: monospace;
|
|
}
|
|
|
|
.version {
|
|
position: absolute;
|
|
display: flex;
|
|
text-align: right;
|
|
padding: 0px;
|
|
margin: 0px;
|
|
|
|
font-size: small;
|
|
}
|