116 lines
1.6 KiB
CSS
116 lines
1.6 KiB
CSS
:root {
|
|
--bg: #000;
|
|
--text: #fff;
|
|
--muted: #aaa;
|
|
--border: #333;
|
|
--accent: #2aa9ff;
|
|
}
|
|
|
|
* {
|
|
box-sizing: border-box;
|
|
margin: 0;
|
|
padding: 0;
|
|
}
|
|
|
|
body {
|
|
background: var(--bg);
|
|
color: var(--text);
|
|
font-family: monospace, sans-serif;
|
|
line-height: 1.5;
|
|
}
|
|
|
|
.container {
|
|
max-width: 800px;
|
|
margin: 20px auto;
|
|
padding: 0 12px;
|
|
}
|
|
|
|
.hero {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 12px;
|
|
margin-bottom: 20px;
|
|
}
|
|
|
|
.logo {
|
|
width: 64px;
|
|
height: 64px;
|
|
object-fit: contain;
|
|
}
|
|
|
|
.title {
|
|
font-size: 32px;
|
|
}
|
|
|
|
.section-title {
|
|
font-size: 14px;
|
|
margin: 20px 0 8px;
|
|
text-transform: uppercase;
|
|
}
|
|
|
|
.center {
|
|
text-align: center;
|
|
}
|
|
|
|
.bigstats {
|
|
display: flex;
|
|
gap: 20px;
|
|
justify-content: center;
|
|
flex-wrap: wrap;
|
|
margin-bottom: 20px;
|
|
}
|
|
|
|
.bigstat {
|
|
min-width: 120px;
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
}
|
|
|
|
.bignum {
|
|
font-size: 32px;
|
|
font-weight: bold;
|
|
text-align: center;
|
|
}
|
|
|
|
.biglabel {
|
|
font-size: 12px;
|
|
color: var(--muted);
|
|
text-align: center;
|
|
}
|
|
|
|
.stack {
|
|
display: grid;
|
|
gap: 8px;
|
|
margin-bottom: 20px;
|
|
}
|
|
|
|
#gameIdInput {
|
|
padding: 8px;
|
|
border: 1px solid var(--border);
|
|
background: var(--bg);
|
|
color: var(--text);
|
|
}
|
|
|
|
button {
|
|
padding: 8px;
|
|
border: 1px solid var(--border);
|
|
background: #111;
|
|
color: var(--text);
|
|
cursor: pointer;
|
|
}
|
|
|
|
button:hover {
|
|
background: #222;
|
|
}
|
|
|
|
.disclaimer {
|
|
font-size: 13px;
|
|
color: var(--muted);
|
|
margin-top: 20px;
|
|
}
|
|
|
|
a {
|
|
color: var(--accent);
|
|
}
|