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.
23 lines
441 B
23 lines
441 B
.close {
|
|
width: 25px;
|
|
height: 25px;
|
|
cursor: pointer;
|
|
position: absolute;
|
|
z-index: 1;
|
|
|
|
&:not(.close--alt) {
|
|
background: url(../../img/icons/close-inverse.svg) no-repeat center;
|
|
|
|
opacity: 0.75;
|
|
.transition(opacity);
|
|
.transition-duration(300ms);
|
|
|
|
&:hover {
|
|
opacity: 1;
|
|
}
|
|
}
|
|
}
|
|
|
|
.close--alt {
|
|
background: url(../../img/icons/close.svg) no-repeat center;
|
|
} |