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 / skewed-section / style.css

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

40 lines 925 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 /* ── Skewed Section ───────────────────────────────────────────────────────── */
2 .bksk-wrap {
3 position: relative;
4 box-sizing: border-box;
5 /* clip-path applied via frontend.js inline style */
6 }
7
8 .bksk-content {
9 position: relative;
10 z-index: 2;
11 box-sizing: border-box;
12 padding: 0 24px;
13 }
14
15 /* Color inheritance */
16 .bksk-content,
17 .bksk-content h1,
18 .bksk-content h2,
19 .bksk-content h3,
20 .bksk-content h4,
21 .bksk-content h5,
22 .bksk-content h6,
23 .bksk-content p {
24 color: inherit;
25 }
26
27 /* Wide & full align */
28 .wp-block-blockenberg-skewed-section.alignfull,
29 .wp-block-blockenberg-skewed-section.alignwide {
30 width: 100%;
31 max-width: 100%;
32 }
33
34 @media (prefers-reduced-motion: reduce) {
35 .bksk-wrap * {
36 transition: none !important;
37 animation: none !important;
38 }
39 }
40