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 / chord-diagram / style.css

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

48 lines 1.9 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 .bkbg-chord-wrap {
2 box-sizing: border-box;
3 font-family: inherit;
4 }
5
6 .bkbg-chord-title {
7 margin: 0 0 14px;
8 font-family: var(--bkbg-chord-tt-font-family, inherit);
9 font-size: var(--bkbg-chord-tt-font-size-d, 16px);
10 font-weight: var(--bkbg-chord-tt-font-weight, 700);
11 line-height: var(--bkbg-chord-tt-line-height-d, 1.3);
12 text-transform: var(--bkbg-chord-tt-text-transform, none);
13 font-style: var(--bkbg-chord-tt-font-style, normal);
14 text-decoration: var(--bkbg-chord-tt-text-decoration, none);
15 letter-spacing: var(--bkbg-chord-tt-letter-spacing-d, normal);
16 word-spacing: var(--bkbg-chord-tt-word-spacing-d, normal);
17 }
18
19 .bkbg-chord-svg {
20 width: 100%;
21 border-radius: 10px;
22 overflow: hidden;
23 }
24
25 .bkbg-chord-svg svg {
26 display: block;
27 width: 100%;
28 height: auto;
29 }
30
31 /* ── Typography responsive ── */
32 @media (max-width: 1024px) {
33 .bkbg-chord-title {
34 font-size: var(--bkbg-chord-tt-font-size-t, var(--bkbg-chord-tt-font-size-d, 16px));
35 line-height: var(--bkbg-chord-tt-line-height-t, var(--bkbg-chord-tt-line-height-d, 1.3));
36 letter-spacing: var(--bkbg-chord-tt-letter-spacing-t, var(--bkbg-chord-tt-letter-spacing-d, normal));
37 word-spacing: var(--bkbg-chord-tt-word-spacing-t, var(--bkbg-chord-tt-word-spacing-d, normal));
38 }
39 }
40 @media (max-width: 767px) {
41 .bkbg-chord-title {
42 font-size: var(--bkbg-chord-tt-font-size-m, var(--bkbg-chord-tt-font-size-t, var(--bkbg-chord-tt-font-size-d, 16px)));
43 line-height: var(--bkbg-chord-tt-line-height-m, var(--bkbg-chord-tt-line-height-t, var(--bkbg-chord-tt-line-height-d, 1.3)));
44 letter-spacing: var(--bkbg-chord-tt-letter-spacing-m, var(--bkbg-chord-tt-letter-spacing-t, var(--bkbg-chord-tt-letter-spacing-d, normal)));
45 word-spacing: var(--bkbg-chord-tt-word-spacing-m, var(--bkbg-chord-tt-word-spacing-t, var(--bkbg-chord-tt-word-spacing-d, normal)));
46 }
47 }
48