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 / qr-code / style.css

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

56 lines 2.1 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 /* ── QR Code ────────────────────────────────────────────────────────────── */
2 .bkqr-wrap {
3 line-height: 1;
4 }
5 .bkqr-box {
6 display: inline-block;
7 box-sizing: border-box;
8 }
9 .bkqr-canvas {
10 display: flex;
11 justify-content: center;
12 }
13 .bkqr-canvas img,
14 .bkqr-canvas canvas {
15 display: block;
16 max-width: 100%;
17 height: auto;
18 }
19 .bkqr-caption {
20 margin: 10px 0 0;
21 font-family: var(--bkqr-cap-font-family, inherit);
22 font-size: var(--bkqr-cap-font-size-d, 13px);
23 font-weight: var(--bkqr-cap-font-weight, 400);
24 font-style: var(--bkqr-cap-font-style, normal);
25 text-decoration: var(--bkqr-cap-text-decoration, none);
26 text-transform: var(--bkqr-cap-text-transform, none);
27 line-height: var(--bkqr-cap-line-height-d, 1.4);
28 letter-spacing: var(--bkqr-cap-letter-spacing-d, normal);
29 word-spacing: var(--bkqr-cap-word-spacing-d, normal);
30 }
31 .bkqr-download {
32 transition: background 0.2s, border-color 0.2s;
33 }
34 .bkqr-download:hover {
35 background: #f9fafb !important;
36 border-color: #9ca3af !important;
37 }
38
39 @media (max-width: 1024px) {
40 .bkqr-caption {
41 font-size: var(--bkqr-cap-font-size-t, var(--bkqr-cap-font-size-d, 13px));
42 line-height: var(--bkqr-cap-line-height-t, var(--bkqr-cap-line-height-d, 1.4));
43 letter-spacing: var(--bkqr-cap-letter-spacing-t, var(--bkqr-cap-letter-spacing-d, normal));
44 word-spacing: var(--bkqr-cap-word-spacing-t, var(--bkqr-cap-word-spacing-d, normal));
45 }
46 }
47
48 @media (max-width: 767px) {
49 .bkqr-caption {
50 font-size: var(--bkqr-cap-font-size-m, var(--bkqr-cap-font-size-t, var(--bkqr-cap-font-size-d, 13px)));
51 line-height: var(--bkqr-cap-line-height-m, var(--bkqr-cap-line-height-t, var(--bkqr-cap-line-height-d, 1.4)));
52 letter-spacing: var(--bkqr-cap-letter-spacing-m, var(--bkqr-cap-letter-spacing-t, var(--bkqr-cap-letter-spacing-d, normal)));
53 word-spacing: var(--bkqr-cap-word-spacing-m, var(--bkqr-cap-word-spacing-t, var(--bkqr-cap-word-spacing-d, normal)));
54 }
55 }
56