Files
blog/sass/_article.scss
2024-07-15 07:10:12 +03:00

26 lines
374 B
SCSS

#banner-container {
$mask: linear-gradient(black, transparent);
-webkit-mask-image: $mask;
-webkit-user-select: none;
position: absolute;
top: 0;
left: 0;
z-index: -1;
mask-image: $mask;
width: 100vw;
height: 50vw;
user-select: none;
#banner {
position: fixed;
top: 0;
left: 0;
transition: none;
margin: 0;
}
}
.banner-margin {
margin-top: 35vw;
}