26 lines
348 B
CSS
26 lines
348 B
CSS
:root {
|
|
--host-bg: #11111b;
|
|
--host-surface: #1a1b26;
|
|
}
|
|
|
|
* {
|
|
box-sizing: border-box;
|
|
}
|
|
|
|
html, body {
|
|
margin: 0;
|
|
padding: 0;
|
|
width: 100%;
|
|
height: 100%;
|
|
overflow: hidden;
|
|
background: var(--host-bg);
|
|
}
|
|
|
|
#terminal {
|
|
position: absolute;
|
|
top: 0;
|
|
left: 0;
|
|
right: 0;
|
|
bottom: 0;
|
|
overflow: hidden;
|
|
} |