PluginProbe
Blockenberg — 600+ Advanced Gutenberg Blocks & AI Agent for WordPress Block Editor / 2.0.7
Blockenberg — 600+ Advanced Gutenberg Blocks & AI Agent for WordPress Block Editor v2.0.7
2.0.13 2.0.12 2.0.11 2.0.10 2.0.9 trunk 2.0.2 2.0.3 2.0.4 2.0.5 2.0.6 2.0.7 2.0.8
blockenberg / blocks / scroll-reveal / style.css

style.css in Blockenberg — 600+ Advanced Gutenberg Blocks & AI Agent for WordPress Block Editor 2.0.7, at blocks/scroll-reveal/style.css

29 lines 606 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
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