# blockenberg/2.0.7/blocks/scroll-reveal/style.css

Blockenberg — 600+ Advanced Gutenberg Blocks &amp; AI Agent for WordPress Block Editor, version 2.0.7. 29 lines.

- Page: https://pluginprobe.com/plugins/blockenberg/2.0.7/code/blocks/scroll-reveal/style.css
- Raw: https://pluginprobe.com/plugins/blockenberg/2.0.7/raw/blocks/scroll-reveal/style.css
- Modified: 2026-03-06T12:32:40+00:00

Line numbers below start at 1. Link to a line or a range by appending a fragment to the
page URL, for example `https://pluginprobe.com/plugins/blockenberg/2.0.7/code/blocks/scroll-reveal/style.css#L10-L20`.

```css
/* Scroll Reveal — style */
.bksr-wrap {
    box-sizing: border-box;
}

/* Hidden initial state — set by JS to avoid FOUC if JS is slow */
.bksr-hidden {
    visibility: hidden;
}

/* Revealed state */
.bksr-revealed {
    visibility: visible !important;
}

/* Reduced motion: skip animations */
@media (prefers-reduced-motion: reduce) {
    .bksr-wrap {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
    }
    .bksr-child-reveal {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
    }
}

```
