1
0
mirror of https://github.com/lexogrine/cs2-react-hud.git synced 2025-12-10 03:52:48 +01:00
2023-09-11 12:37:32 +02:00

48 lines
766 B
CSS

/*
* Use this file to apply custom styles to the radar image
*/
/* Any player dot */
div.dot {}
/* Players that are CT or T */
div.dot.CT {}
div.dot.T {}
/* The player with the bomb */
div.dot.bomb{}
/* The player currently being observed */
div.dot.active {}
/* A dead player */
div.dot.dead {}
/* The number on a player dot */
div.label {}
/* The number on the dot being spectated */
div.label.active {}
/* The dropped or planted bomb on the map */
#bomb {
height: 4vmin;
width: 4vmin;
background-repeat:no-repeat;
}
/* Smoke circles on the map */
#smokes {
display: none;
}
#smokes > div {
display: none;
}
/* Inferno circles on the map */
.inferno > div {}
/* The advisory on screen */
#advisory {
display: none !important;
}