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 / content-score / style.css

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

68 lines 3.3 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 .bkbg-cs-wrap { box-sizing: border-box; }
2
3 .bkbg-cs-title {
4 margin: 0 0 18px;
5 font-family: var(--bkcs-title-font-family, inherit);
6 font-size: var(--bkcs-title-font-size-d, 18px);
7 font-weight: var(--bkcs-title-font-weight, 700);
8 font-style: var(--bkcs-title-font-style, normal);
9 text-transform: var(--bkcs-title-text-transform, none);
10 text-decoration: var(--bkcs-title-text-decoration, none);
11 line-height: var(--bkcs-title-line-height-d, 1.3);
12 letter-spacing: var(--bkcs-title-letter-spacing-d, normal);
13 word-spacing: var(--bkcs-title-word-spacing-d, normal);
14 }
15
16 .bkbg-cs-gauge-label {
17 font-size: var(--bkcs-label-sz, 13px);
18 font-weight: 600;
19 }
20
21 .bkbg-cs-inner { box-sizing: border-box; }
22
23 .bkbg-cs-criterion {
24 font-family: var(--bkcs-body-font-family, inherit);
25 font-size: var(--bkcs-body-font-size-d, 14px);
26 font-weight: var(--bkcs-body-font-weight, 400);
27 font-style: var(--bkcs-body-font-style, normal);
28 text-transform: var(--bkcs-body-text-transform, none);
29 text-decoration: var(--bkcs-body-text-decoration, none);
30 line-height: var(--bkcs-body-line-height-d, 1.4);
31 letter-spacing: var(--bkcs-body-letter-spacing-d, normal);
32 word-spacing: var(--bkcs-body-word-spacing-d, normal);
33 }
34 .bkbg-cs-crit-label { font-weight: 500; }
35 .bkbg-cs-crit-score { font-weight: 700; }
36 .bkbg-cs-crit-note { font-size: 11px; }
37
38 .bkbg-cs-criteria { box-sizing: border-box; }
39
40 @media (max-width: 1024px) {
41 .bkbg-cs-title {
42 font-size: var(--bkcs-title-font-size-t, var(--bkcs-title-font-size-d, 18px));
43 line-height: var(--bkcs-title-line-height-t, var(--bkcs-title-line-height-d, 1.3));
44 letter-spacing: var(--bkcs-title-letter-spacing-t, var(--bkcs-title-letter-spacing-d, normal));
45 word-spacing: var(--bkcs-title-word-spacing-t, var(--bkcs-title-word-spacing-d, normal));
46 }
47 .bkbg-cs-criterion {
48 font-size: var(--bkcs-body-font-size-t, var(--bkcs-body-font-size-d, 14px));
49 line-height: var(--bkcs-body-line-height-t, var(--bkcs-body-line-height-d, 1.4));
50 letter-spacing: var(--bkcs-body-letter-spacing-t, var(--bkcs-body-letter-spacing-d, normal));
51 word-spacing: var(--bkcs-body-word-spacing-t, var(--bkcs-body-word-spacing-d, normal));
52 }
53 }
54 @media (max-width: 767px) {
55 .bkbg-cs-title {
56 font-size: var(--bkcs-title-font-size-m, var(--bkcs-title-font-size-t, var(--bkcs-title-font-size-d, 18px)));
57 line-height: var(--bkcs-title-line-height-m, var(--bkcs-title-line-height-t, var(--bkcs-title-line-height-d, 1.3)));
58 letter-spacing: var(--bkcs-title-letter-spacing-m, var(--bkcs-title-letter-spacing-t, var(--bkcs-title-letter-spacing-d, normal)));
59 word-spacing: var(--bkcs-title-word-spacing-m, var(--bkcs-title-word-spacing-t, var(--bkcs-title-word-spacing-d, normal)));
60 }
61 .bkbg-cs-criterion {
62 font-size: var(--bkcs-body-font-size-m, var(--bkcs-body-font-size-t, var(--bkcs-body-font-size-d, 14px)));
63 line-height: var(--bkcs-body-line-height-m, var(--bkcs-body-line-height-t, var(--bkcs-body-line-height-d, 1.4)));
64 letter-spacing: var(--bkcs-body-letter-spacing-m, var(--bkcs-body-letter-spacing-t, var(--bkcs-body-letter-spacing-d, normal)));
65 word-spacing: var(--bkcs-body-word-spacing-m, var(--bkcs-body-word-spacing-t, var(--bkcs-body-word-spacing-d, normal)));
66 }
67 }
68