37 lines
588 B
CSS
37 lines
588 B
CSS
html,
|
|
body {
|
|
margin: 0;
|
|
width: 100%;
|
|
height: 100%;
|
|
background: #0a0a0a;
|
|
overflow: hidden;
|
|
}
|
|
|
|
body {
|
|
display: grid;
|
|
place-items: center;
|
|
font-family: "Inter", sans-serif;
|
|
color: #ededed;
|
|
}
|
|
|
|
#broadcast-canvas {
|
|
width: 100vw;
|
|
height: 100vh;
|
|
object-fit: contain;
|
|
image-rendering: auto;
|
|
}
|
|
|
|
#broadcast-status {
|
|
position: fixed;
|
|
left: 16px;
|
|
bottom: 16px;
|
|
padding: 8px 10px;
|
|
border-radius: 8px;
|
|
background: #111;
|
|
border: 1px solid #1c1c1c;
|
|
color: #888;
|
|
font: 600 12px/1.2 "JetBrains Mono", monospace;
|
|
letter-spacing: 0.3px;
|
|
pointer-events: none;
|
|
}
|