| 1 |
/* Scroll Reveal — style */ |
| 2 |
.bksr-wrap { |
| 3 |
box-sizing: border-box; |
| 4 |
} |
| 5 |
|
| 6 |
/* Hidden initial state — set by JS to avoid FOUC if JS is slow */ |
| 7 |
.bksr-hidden { |
| 8 |
visibility: hidden; |
| 9 |
} |
| 10 |
|
| 11 |
/* Revealed state */ |
| 12 |
.bksr-revealed { |
| 13 |
visibility: visible !important; |
| 14 |
} |
| 15 |
|
| 16 |
/* Reduced motion: skip animations */ |
| 17 |
@media (prefers-reduced-motion: reduce) { |
| 18 |
.bksr-wrap { |
| 19 |
opacity: 1 !important; |
| 20 |
transform: none !important; |
| 21 |
transition: none !important; |
| 22 |
} |
| 23 |
.bksr-child-reveal { |
| 24 |
opacity: 1 !important; |
| 25 |
transform: none !important; |
| 26 |
transition: none !important; |
| 27 |
} |
| 28 |
} |
| 29 |
|