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 / scatter-plot / style.css

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

38 lines 1.7 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 .bkbg-scatter-wrap { box-sizing: border-box; }
2
3 /* Title — heading specificity ≥ 0,2,0 */
4 .bkbg-scatter-wrap h3.bkbg-scatter-title {
5 font-family: var(--bksp-tt-font-family, inherit);
6 font-size: var(--bksp-tt-font-size-d, 1.05em);
7 font-weight: var(--bksp-tt-font-weight, 600);
8 font-style: var(--bksp-tt-font-style, normal);
9 text-decoration: var(--bksp-tt-text-decoration, none);
10 text-transform: var(--bksp-tt-text-transform, none);
11 line-height: var(--bksp-tt-line-height-d, 1.2);
12 letter-spacing: var(--bksp-tt-letter-spacing-d, normal);
13 word-spacing: var(--bksp-tt-word-spacing-d, normal);
14 margin: 0 0 .6em;
15 }
16
17 .bkbg-scatter-svg svg { display: block; }
18
19 /* Tablet */
20 @media (max-width: 1024px) {
21 .bkbg-scatter-wrap .bkbg-scatter-title {
22 font-size: var(--bksp-tt-font-size-t, var(--bksp-tt-font-size-d, 1.05em));
23 line-height: var(--bksp-tt-line-height-t, var(--bksp-tt-line-height-d, 1.2));
24 letter-spacing: var(--bksp-tt-letter-spacing-t, var(--bksp-tt-letter-spacing-d, normal));
25 word-spacing: var(--bksp-tt-word-spacing-t, var(--bksp-tt-word-spacing-d, normal));
26 }
27 }
28
29 /* Mobile */
30 @media (max-width: 767px) {
31 .bkbg-scatter-wrap .bkbg-scatter-title {
32 font-size: var(--bksp-tt-font-size-m, var(--bksp-tt-font-size-t, var(--bksp-tt-font-size-d, 1.05em)));
33 line-height: var(--bksp-tt-line-height-m, var(--bksp-tt-line-height-t, var(--bksp-tt-line-height-d, 1.2)));
34 letter-spacing: var(--bksp-tt-letter-spacing-m, var(--bksp-tt-letter-spacing-t, var(--bksp-tt-letter-spacing-d, normal)));
35 word-spacing: var(--bksp-tt-word-spacing-m, var(--bksp-tt-word-spacing-t, var(--bksp-tt-word-spacing-d, normal)));
36 }
37 }
38