1
0
mirror of https://github.com/phuoc-ng/csslayout.git synced 2025-10-29 04:16:23 +01:00
Files
csslayout/styles/patterns/_fading-long-section.scss
2022-09-19 18:07:06 +07:00

27 lines
491 B
SCSS

.fading-long-section {
/* Used to position the faded element */
position: relative;
height: 8rem;
width: 8rem;
}
.fading-long-section__content {
/* Height */
height: 100%;
overflow-y: hidden;
}
.fading-long-section__fading {
/* Displayed at the bottom */
bottom: 0;
left: 0;
position: absolute;
/* Size */
height: 2rem;
width: 100%;
/* Gradient background */
background: linear-gradient(rgba(255, 255, 255, 0.01), #fff);
}