1
0
mirror of https://github.com/lexogrine/cs2-react-hud.git synced 2026-05-04 04:03:10 +02:00

initial commit

This commit is contained in:
Hubert Walczak
2023-09-11 12:37:32 +02:00
commit 989ede8638
247 changed files with 7656 additions and 0 deletions
+66
View File
@@ -0,0 +1,66 @@
#radar_maps_container {
position: fixed;
top: 10px;
left: 10px;
border: none;
background-color: rgba(0,0,0,0.5);
transition: all 1s;
.map-container {
transition: all 1s;
}
}
#iframe_radar {
border: none;
}
#radar_maps_container.hide {
opacity: 0;
}
#radar_maps_container.preview {
transform: rotate3d(1, 0, 0, 14deg) translateX(-50%);
transform-style: preserve-3d;
left: 50%;
top: 100px;
.map {
perspective: 500px;
}
}
.radar-component-container {
width: 350px;
height:350px;
overflow: hidden;
}
#maps_container {
width: 100%;
height: 30px;
display: flex;
flex-direction: row;
justify-content: space-evenly;
background-color: rgba(0,0,0,0.5);
}
.veto_entry {
display: flex;
justify-content: center;
>div {
display: flex;
justify-content: center;
align-items: center;
color: white;
text-transform: uppercase;
font-size: 10pt;
}
.team_logo {
img {
max-height: 23px;
padding-right: 3px;
max-width: 23px;
}
.logo {
height: 23px;
width: 23px;
}
}
.map_name.active {
text-shadow: 0 0 15px white;
font-weight: 600;
}
}