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 / mixed-heading / style.css

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

87 lines 2.5 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 /* ─── Mixed Heading ─── */
2 .bkbg-mhd-outer {
3 display: block;
4 }
5
6 .bkbg-mhd-heading {
7 word-break: break-word;
8 margin: 0 auto;
9 padding: 0;
10 }
11
12 /* ── Typography (CSS-var driven, heading specificity for h1-h6) ── */
13
14 .bkbg-mhd-outer .bkbg-mhd-heading {
15 font-family: var(--bkbg-mhd-hd-font-family, inherit);
16 font-size: var(--bkbg-mhd-hd-font-size-d, 48px);
17 font-weight: var(--bkbg-mhd-hd-font-weight, normal);
18 line-height: var(--bkbg-mhd-hd-line-height-d, 1.15);
19 font-style: var(--bkbg-mhd-hd-font-style, normal);
20 text-decoration: var(--bkbg-mhd-hd-text-decoration, none);
21 text-transform: var(--bkbg-mhd-hd-text-transform, none);
22 letter-spacing: var(--bkbg-mhd-hd-letter-spacing-d, normal);
23 }
24
25 /* Segment base — display inline by default, overridden per style */
26 .bkbg-mhd-seg {
27 display: inline;
28 }
29
30 /* Gradient segment */
31 .bkbg-mhd-seg.style-gradient {
32 -webkit-background-clip: text;
33 background-clip: text;
34 -webkit-text-fill-color: transparent;
35 color: transparent;
36 }
37
38 /* Highlight segment */
39 .bkbg-mhd-seg.style-highlight {
40 border-radius: 4px;
41 padding: 0 4px;
42 display: inline;
43 }
44
45 /* Stroke / outlined segment */
46 .bkbg-mhd-seg.style-stroke {
47 color: transparent;
48 -webkit-text-fill-color: transparent;
49 }
50
51 /* Badge / pill segment */
52 .bkbg-mhd-seg.style-badge {
53 display: inline-block;
54 vertical-align: middle;
55 }
56
57 /* Monospace / code segment */
58 .bkbg-mhd-seg.style-mono {
59 font-family: 'Courier New', Courier, monospace;
60 border-radius: 4px;
61 padding: 2px 6px;
62 font-size: 0.88em;
63 }
64
65 /* Ghost segment */
66 .bkbg-mhd-seg.style-ghost {
67 opacity: 0.35;
68 }
69
70 /* ── Typography responsive ── */
71
72 @media (max-width: 1024px) {
73 .bkbg-mhd-outer .bkbg-mhd-heading {
74 font-size: var(--bkbg-mhd-hd-font-size-t, var(--bkbg-mhd-hd-font-size-d, 48px));
75 line-height: var(--bkbg-mhd-hd-line-height-t, var(--bkbg-mhd-hd-line-height-d, 1.15));
76 letter-spacing: var(--bkbg-mhd-hd-letter-spacing-t, var(--bkbg-mhd-hd-letter-spacing-d, normal));
77 }
78 }
79
80 @media (max-width: 767px) {
81 .bkbg-mhd-outer .bkbg-mhd-heading {
82 font-size: var(--bkbg-mhd-hd-font-size-m, var(--bkbg-mhd-hd-font-size-t, var(--bkbg-mhd-hd-font-size-d, 36px)));
83 line-height: var(--bkbg-mhd-hd-line-height-m, var(--bkbg-mhd-hd-line-height-t, var(--bkbg-mhd-hd-line-height-d, 1.15)));
84 letter-spacing: var(--bkbg-mhd-hd-letter-spacing-m, var(--bkbg-mhd-hd-letter-spacing-t, var(--bkbg-mhd-hd-letter-spacing-d, normal)));
85 }
86 }
87