mirror of
https://github.com/muerwre/vault-frontend.git
synced 2025-04-24 20:36:40 +07:00
31 lines
487 B
SCSS
31 lines
487 B
SCSS
.cover {
|
|
position: absolute;
|
|
width: 100%;
|
|
height: 100%;
|
|
top: 0;
|
|
left: 0;
|
|
background: 50% 50% no-repeat;
|
|
background-size: cover;
|
|
opacity: 0;
|
|
transition: opacity 1s;
|
|
|
|
&.active {
|
|
opacity: 1;
|
|
}
|
|
|
|
&::after {
|
|
content: '';
|
|
position: absolute;
|
|
width: 100%;
|
|
height: 100%;
|
|
top: 0;
|
|
left: 0;
|
|
background: url('~/sprites/stripes.svg') transparentize($color: #000000, $amount: 0.5);
|
|
}
|
|
|
|
img {
|
|
width: 0;
|
|
height: 0;
|
|
opacity: 0;
|
|
}
|
|
}
|