PluginProbe
Blockenberg — 600+ Advanced Gutenberg Blocks & AI Agent for WordPress Block Editor / 2.0.11
Blockenberg — 600+ Advanced Gutenberg Blocks & AI Agent for WordPress Block Editor v2.0.11
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 / radar-chart / style.css

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

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