Remove <600k toe teams + perf imporvements

This commit is contained in:
Codrin Pavel
2020-06-06 18:19:15 +03:00
parent 1353b5ff6e
commit 0636e45108
159 changed files with 196 additions and 170 deletions

View File

@@ -0,0 +1,29 @@
[data-titan-thumb] {
display: inline-block;
width: 32px;
height: 32px;
background: $black;
border-radius: 50%;
vertical-align: middle;
margin: 1px;
border: 1px solid #666;
background-size: cover;
&.thumb--large {
width: 46px;
height: 46px;
margin: 2px;
}
}
$titans: 0, 1, 2, 3;
$elements: 400, 401, 402;
@each $element in $elements {
@each $titan in $titans {
$id: #{$element}#{$titan};
[data-titan-thumb="#{$id}"] {
background-image: url("../img/Titans/#{$id}.png");
}
}
}