fix typecheck script, animations

This commit is contained in:
Brian Beck 2026-03-16 18:16:34 -07:00
parent 642fce9c06
commit ceb9fea9f4
120 changed files with 1308 additions and 911 deletions

View file

@ -8,17 +8,10 @@
pointer-events: none;
}
.TopRight {
.Compass {
position: absolute;
top: 10px;
right: 10px;
display: flex;
align-items: flex-start;
gap: 6px;
}
.Compass {
position: relative;
width: 64px;
height: 64px;
flex-shrink: 0;
@ -56,14 +49,19 @@
}
.Bars {
position: absolute;
top: 20px;
right: 82px;
width: 120px;
max-width: 20%;
display: flex;
flex-direction: column;
align-items: flex-end;
gap: 3px;
padding-top: 10px;
}
.BarTrack {
width: 120px;
width: 100%;
height: 10px;
background: rgba(0, 0, 0, 0.5);
border: 1px solid rgba(255, 255, 255, 0.15);
@ -94,6 +92,16 @@
gap: 2px;
}
.WeaponHUD .PackInvItem[data-active="false"] {
opacity: 0.6;
}
@media (max-height: 699px) {
.WeaponHUD .PackInvItem[data-active="false"] {
display: none;
}
}
.WeaponSeparator {
height: 6px;
}
@ -109,6 +117,12 @@
border-collapse: collapse;
}
@media (max-width: 499px), (pointer: coarse) {
.TeamScores {
display: none;
}
}
.ObserverCount {
position: absolute;
bottom: calc(100%);
@ -171,6 +185,12 @@
gap: 4px;
}
@media (max-width: 499px), (pointer: coarse) {
.PackInventoryHUD {
display: none;
}
}
.PackInvItem {
display: flex;
flex-direction: column;
@ -182,13 +202,9 @@
gap: 1px;
}
.PackInvItemActive {
border-color: rgba(128, 255, 200, 0.5);
box-shadow: 0 0 6px rgba(128, 255, 200, 0.3);
}
.PackInvItemDim {
opacity: 0.5;
.PackInvItem[data-active="true"] {
border-color: rgba(128, 255, 200, 0.6);
box-shadow: 0 0 8px rgba(128, 255, 200, 0.4);
}
.PackInvIcon {