PluginProbe
Blockenberg — 600+ Advanced Gutenberg Blocks & AI Agent for WordPress Block Editor / 2.0.13
Blockenberg — 600+ Advanced Gutenberg Blocks & AI Agent for WordPress Block Editor v2.0.13
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 / embed / style.css

style.css in Blockenberg — 600+ Advanced Gutenberg Blocks & AI Agent for WordPress Block Editor 2.0.13, at blocks/embed/style.css

37 lines 725 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 /* ==========================================================
2 Embed / iFrame Block — bkbg-embed
3 ========================================================== */
4
5 .bkbg-embed-block-wrap {
6 box-sizing: border-box;
7 }
8
9 .bkbg-embed-wrap {
10 position: relative;
11 width: 100%;
12 box-sizing: border-box;
13 overflow: hidden;
14 }
15
16 .bkbg-embed-ratio {
17 position: relative;
18 box-sizing: border-box;
19 }
20
21 .bkbg-embed-iframe {
22 position: absolute;
23 top: 0;
24 left: 0;
25 width: 100%;
26 height: 100%;
27 border: none;
28 display: block;
29 }
30
31 /* Responsive: on very small screens maintain aspect ratio naturally */
32 @media (max-width: 480px) {
33 .bkbg-embed-wrap {
34 border-radius: 0 !important;
35 }
36 }
37