17 lines
202 B
CSS
17 lines
202 B
CSS
body {
|
|
overflow: hidden;
|
|
padding: 0;
|
|
margin: 0;
|
|
width: 100%;
|
|
height: 100%;
|
|
background: #000000;
|
|
}
|
|
|
|
#display {
|
|
width: 100vw;
|
|
height: 100vh;
|
|
}
|
|
|
|
pre {
|
|
color: #ffffff;
|
|
}
|