mirror of
https://github.com/vkaelin/LeagueStats.git
synced 2026-03-26 05:17:27 +00:00
24 lines
369 B
CSS
24 lines
369 B
CSS
|
|
.Win {
|
||
|
|
background-image: linear-gradient(
|
||
|
|
90deg,
|
||
|
|
rgba(1, 97, 28, 0.3) 0%,
|
||
|
|
rgba(44, 82, 130, 0) 45%
|
||
|
|
);
|
||
|
|
}
|
||
|
|
|
||
|
|
.Fail {
|
||
|
|
background-image: linear-gradient(
|
||
|
|
90deg,
|
||
|
|
rgba(140, 0, 0, 0.3) 0%,
|
||
|
|
rgba(44, 82, 130, 0) 45%
|
||
|
|
);
|
||
|
|
}
|
||
|
|
|
||
|
|
.Remake {
|
||
|
|
background-image: linear-gradient(
|
||
|
|
90deg,
|
||
|
|
rgba(233, 169, 75, 0.3) 0%,
|
||
|
|
rgba(44, 82, 130, 0) 45%
|
||
|
|
);
|
||
|
|
}
|