1
0
mirror of https://github.com/phuoc-ng/csslayout.git synced 2025-10-23 10:46:13 +02:00
Files
csslayout/styles/patterns/_sticky-sections.scss
2022-09-21 14:31:37 +07:00

30 lines
531 B
SCSS

.sticky-sections {
height: 100%;
/* Demo */
width: 100%;
}
.sticky-sections__section {
/* Take full size */
height: 25%;
width: 100%;
/* Stick to the top */
position: sticky;
top: 0;
}
/* Demo */
.sticky-sections__section:nth-child(1) {
background-color: #e5e7eb;
}
.sticky-sections__section:nth-child(2) {
background-color: #d1d5db;
}
.sticky-sections__section:nth-child(3) {
background-color: #9ca3af;
}
.sticky-sections__section:nth-child(4) {
background-color: #6b7280;
}