This commit is contained in:
s-lnk
2026-04-30 21:58:39 +03:00
commit aabe5fe2b7
2923 changed files with 366740 additions and 0 deletions
@@ -0,0 +1,37 @@
//
// Mask
//
.mask {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
@include transition($transition-base);
& + .container {
position: relative;
}
}
// Animated mask transparency
.card {
.mask {
border-radius: $card-border-radius;
}
.hover-mask {
opacity: 0;
transition-delay: 150ms;
}
&:hover {
.hover-mask {
opacity: .4;
}
}
}