You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
46 lines
718 B
46 lines
718 B
$schemeW: 32px;
|
|
|
|
.schemes {
|
|
font-size: 0;
|
|
height: 32px;
|
|
position: absolute;
|
|
right: 0;
|
|
top: 160px;
|
|
width: 200px;
|
|
}
|
|
|
|
.scheme-item {
|
|
background-image: url('../res/scheme.svg');
|
|
background-repeat: no-repeat;
|
|
border: 4px solid #fff;
|
|
cursor: pointer;
|
|
display: inline-block;
|
|
height: 40px;
|
|
opacity: 0.2;
|
|
outline: 1px solid #d5d5d5;
|
|
width: 40px;
|
|
|
|
&:hover {
|
|
opacity: 0.6;
|
|
}
|
|
|
|
&.active {
|
|
opacity: 1;
|
|
|
|
.sort-icon {
|
|
visibility: visible;
|
|
}
|
|
}
|
|
}
|
|
|
|
.scheme1,
|
|
.scheme2,
|
|
.scheme3 {
|
|
margin-right: 13px;
|
|
}
|
|
|
|
@for $i from 1 through 4 {
|
|
.scheme#{$i} {
|
|
background-position: -#{($i - 1) * $schemeW} 0;
|
|
}
|
|
}
|
|
|