:root {
color-scheme: light dark;
font-family: ui-sans-serif, system-ui, sans-serif;
}
* {
box-sizing: border-box;
}
body {
margin: 0;
color: #edf0f7;
background: #111318;
}
header {
display: flex;
gap: 10px;
align-items: center;
height: 48px;
padding: 0 16px;
background: #171a20;
border-bottom: 1px solid #2b303b;
}
.mark {
width: 10px;
height: 10px;
background: #78a8ff;
border-radius: 50%;
box-shadow: 0 0 18px #78a8ff;
}
.name {
font-weight: 650;
}
.uri {
margin-left: auto;
color: #939cab;
font:
12px ui-monospace,
monospace;
}
main {
height: calc(100vh - 48px);
padding: 12px;
}
iframe {
width: 100%;
height: 100%;
background: white;
border: 1px solid #343a47;
border-radius: 10px;
}
#status {
color: #939cab;
font-size: 12px;
}