Files
csgowtf/src/scss/classes.scss
vikingowl 7114ca2479
All checks were successful
CSGOWTF/csgowtf/pipeline/head This commit looks good
added Chat-History to matches
2022-02-03 14:55:22 +01:00

65 lines
1.1 KiB
SCSS

.helptext {
cursor: help;
text-decoration: underline dotted grey;
}
.helpicon {
cursor: help;
}
.uprank {
box-shadow: 0 0 20px greenyellow;
border: 1px solid greenyellow;
border-radius: 5px;
}
.downrank {
box-shadow: 0 0 20px #ff2f2f;
border: 1px solid #ff2f2f;
border-radius: 5px;
}
.placeholder-wave-alt {
mask-image: linear-gradient(130deg, black 55%, rgba(0, 0, 0, (1 - 0.2)) 75%, black 95%);
mask-size: 200% 100%;
animation: placeholder-wave-alt 2.5s linear infinite;
}
.team-color-blue,
.team-color-orange,
.team-color-green,
.team-color-purple,
.team-color-yellow,
.team-color-grey {
outline: 3px solid;
}
.team-color-grey {
outline-color: var(--csgo-grey);
}
.team-color-orange {
outline-color: var(--csgo-orange);
}
.team-color-blue {
outline-color: var(--csgo-blue);
}
.team-color-yellow {
outline-color: var(--csgo-yellow);
}
.team-color-purple {
outline-color: var(--csgo-purple);
}
.team-color-green {
outline-color: var(--csgo-green);
}
@keyframes placeholder-wave-alt {
100% {
mask-position: -200% 0%;
}
}