add score screen

This commit is contained in:
Brian Beck 2026-03-14 17:12:37 -07:00
parent 9c64e59971
commit d9c18334b2
56 changed files with 1660 additions and 817 deletions

View file

@ -42,6 +42,20 @@
image-rendering: pixelated;
}
.CompassClock {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
font-size: 10px;
font-weight: 600;
font-variant-numeric: tabular-nums;
color: rgba(200, 240, 230, 0.9);
text-shadow: 0 0 4px rgba(0, 0, 0, 0.8);
pointer-events: none;
white-space: nowrap;
}
.Bars {
display: flex;
flex-direction: column;
@ -87,27 +101,27 @@
/* ── Team Scores (bottom-left) ── */
.TeamInfo {
display: flex;
flex-direction: column;
gap: 2px;
}
.TeamScores {
position: absolute;
bottom: 6px;
left: 6px;
font-size: 12px;
border: 1px solid rgba(128, 255, 200, 0.15);
border-collapse: collapse;
}
.ObserverCount {
position: absolute;
bottom: calc(100%);
display: block;
padding: 4px 6px;
font-size: 10px;
color: rgb(193, 228, 216);
text-shadow: 0 0 2px rgba(0, 0, 0, 0.6);
}
.TeamRow {
flex: 1 0 auto;
display: flex;
align-items: center;
justify-content: space-between;
gap: 6px;
padding: 4px 8px 4px 6px;
background: rgba(0, 50, 60, 0.65);
}
@ -119,6 +133,7 @@
min-width: 6em;
font-size: 12px;
font-weight: 500;
padding: 5px 6px;
}
.TeamNameFriendly {
@ -135,11 +150,14 @@
color: #fff;
font-weight: 500;
text-align: right;
padding: 0 10px;
border-left: 1px solid rgba(128, 255, 200, 0.15);
}
.TeamCount {
color: #9ba;
font-size: 9px;
color: rgb(125, 155, 150);
font-size: 11px;
padding: 0 6px;
}
/* ── Pack + Inventory HUD (bottom-right) ── */