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 / lollipop-chart / style.css

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

62 lines 2.7 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 .bkbg-lollipop-wrap {
2 box-sizing: border-box;
3 font-family: inherit;
4 }
5
6 .bkbg-lp-title {
7 margin: 0 0 14px;
8 font-family: var(--bkbg-lp-tt-font-family, inherit);
9 font-size: var(--bkbg-lp-tt-font-size-d, 1.25rem);
10 font-weight: var(--bkbg-lp-tt-font-weight, 700);
11 font-style: var(--bkbg-lp-tt-font-style, normal);
12 line-height: var(--bkbg-lp-tt-line-height-d, 1.3);
13 letter-spacing: var(--bkbg-lp-tt-letter-spacing-d, normal);
14 word-spacing: var(--bkbg-lp-tt-word-spacing-d, normal);
15 text-decoration: var(--bkbg-lp-tt-text-decoration, none);
16 text-transform: var(--bkbg-lp-tt-text-transform, none);
17 }
18 /* Heading specificity for editor theme override */
19 .bkbg-lollipop-wrap h3.bkbg-lp-title {
20 font-family: var(--bkbg-lp-tt-font-family, inherit);
21 font-size: var(--bkbg-lp-tt-font-size-d, 1.25rem);
22 font-weight: var(--bkbg-lp-tt-font-weight, 700);
23 font-style: var(--bkbg-lp-tt-font-style, normal);
24 line-height: var(--bkbg-lp-tt-line-height-d, 1.3);
25 letter-spacing: var(--bkbg-lp-tt-letter-spacing-d, normal);
26 word-spacing: var(--bkbg-lp-tt-word-spacing-d, normal);
27 text-decoration: var(--bkbg-lp-tt-text-decoration, none);
28 text-transform: var(--bkbg-lp-tt-text-transform, none);
29 }
30
31 .bkbg-lp-svg {
32 width: 100%;
33 border-radius: 8px;
34 overflow: hidden;
35 }
36
37 .bkbg-lp-svg svg {
38 display: block;
39 width: 100%;
40 height: auto;
41 }
42
43 /* ── Responsive typography ─────────────────────────────── */
44 @media (max-width: 1024px) {
45 .bkbg-lollipop-wrap h3.bkbg-lp-title,
46 .bkbg-lp-title {
47 font-size: var(--bkbg-lp-tt-font-size-t, var(--bkbg-lp-tt-font-size-d, 1.25rem));
48 line-height: var(--bkbg-lp-tt-line-height-t, var(--bkbg-lp-tt-line-height-d, 1.3));
49 letter-spacing: var(--bkbg-lp-tt-letter-spacing-t, var(--bkbg-lp-tt-letter-spacing-d, normal));
50 word-spacing: var(--bkbg-lp-tt-word-spacing-t, var(--bkbg-lp-tt-word-spacing-d, normal));
51 }
52 }
53 @media (max-width: 767px) {
54 .bkbg-lollipop-wrap h3.bkbg-lp-title,
55 .bkbg-lp-title {
56 font-size: var(--bkbg-lp-tt-font-size-m, var(--bkbg-lp-tt-font-size-t, var(--bkbg-lp-tt-font-size-d, 1.25rem)));
57 line-height: var(--bkbg-lp-tt-line-height-m, var(--bkbg-lp-tt-line-height-t, var(--bkbg-lp-tt-line-height-d, 1.3)));
58 letter-spacing: var(--bkbg-lp-tt-letter-spacing-m, var(--bkbg-lp-tt-letter-spacing-t, var(--bkbg-lp-tt-letter-spacing-d, normal)));
59 word-spacing: var(--bkbg-lp-tt-word-spacing-m, var(--bkbg-lp-tt-word-spacing-t, var(--bkbg-lp-tt-word-spacing-d, normal)));
60 }
61 }
62