File size: 499 Bytes
f5071ca |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 |
.home__image {
width: 100%;
z-index: -1;
margin-bottom: -250px;
position: fixed;
mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 1), rgba(0, 0, 0, 0));
}
* ::-webkit-scrollbar {
display: none;
}
.home {
display: flex;
background: linear-gradient(to bottom, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.8));
justify-content: center;
margin-left: auto;
margin-right: auto;
max-width: 1500px;
}
.home__row {
display: flex;
z-index: -1;
margin-left: 5px;
margin-right: 5px;
}
|