35 lines
No EOL
610 B
SCSS
35 lines
No EOL
610 B
SCSS
.UncapStar {
|
|
background-repeat: no-repeat;
|
|
background-size: 18px 18px;
|
|
display: block;
|
|
height: 18px;
|
|
width: 18px;
|
|
|
|
&:hover {
|
|
transform: scale(1.2);
|
|
}
|
|
|
|
&.empty,
|
|
&.empty.mlb,
|
|
&.empty.flb,
|
|
&.empty.ulb,
|
|
&.empty.special {
|
|
background: url('/icons/uncap/empty.svg');
|
|
}
|
|
|
|
&.mlb {
|
|
background: url('/icons/uncap/yellow.svg')
|
|
}
|
|
|
|
&.special {
|
|
background: url('/icons/uncap/red.svg')
|
|
}
|
|
|
|
&.flb {
|
|
background: url('/icons/uncap/blue.svg')
|
|
}
|
|
|
|
&.ulb {
|
|
background: url('/icons/uncap/purple.svg')
|
|
}
|
|
} |