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