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 / text-columns / style.css

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

93 lines 3.2 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 .bkbg-tc-app { display: block; }
2
3 .bkbg-tc-wrap { box-sizing: border-box; width: 100%; }
4
5 /* Column grid */
6 .bkbg-tc-grid {
7 display: flex;
8 align-items: flex-start;
9 }
10
11 .bkbg-tc-col {
12 flex: 1;
13 min-width: 0;
14 font-family: var(--bktcl-bd-ff);
15 font-size: var(--bktcl-bd-fs-d, 16px);
16 line-height: var(--bktcl-bd-lh-d, 1.75);
17 letter-spacing: var(--bktcl-bd-ls-d);
18 word-spacing: var(--bktcl-bd-ws-d);
19 font-weight: var(--bktcl-bd-fw);
20 font-style: var(--bktcl-bd-fst);
21 text-decoration: var(--bktcl-bd-td);
22 text-transform: var(--bktcl-bd-tt);
23 }
24 .bkbg-tc-col p { margin-top: 0; margin-bottom: 1em; }
25 .bkbg-tc-col p:last-child { margin-bottom: 0; }
26
27 /* Drop cap */
28 .bkbg-tc-wrap.has-dropcap .bkbg-tc-col:first-child p:first-child::first-letter {
29 float: left;
30 line-height: 0.75;
31 padding-right: 0.1em;
32 font-weight: 800;
33 margin-top: 0.07em;
34 }
35
36 /* Pull quote */
37 .bkbg-tc-pullquote {
38 border-left-style: solid;
39 font-family: var(--bktcl-pq-ff);
40 font-size: var(--bktcl-pq-fs-d, 1.2em);
41 line-height: var(--bktcl-pq-lh-d, 1.4);
42 letter-spacing: var(--bktcl-pq-ls-d);
43 word-spacing: var(--bktcl-pq-ws-d);
44 font-weight: var(--bktcl-pq-fw, 700);
45 font-style: var(--bktcl-pq-fst, italic);
46 text-decoration: var(--bktcl-pq-td);
47 text-transform: var(--bktcl-pq-tt);
48 margin: 32px 0;
49 padding-left: 24px;
50 }
51 .bkbg-tc-pullquote p { margin: 0; }
52
53 /* Typography responsive */
54 @media (max-width: 1024px) {
55 .bkbg-tc-col {
56 font-size: var(--bktcl-bd-fs-t, var(--bktcl-bd-fs-d, 16px));
57 line-height: var(--bktcl-bd-lh-t, var(--bktcl-bd-lh-d, 1.75));
58 letter-spacing: var(--bktcl-bd-ls-t, var(--bktcl-bd-ls-d));
59 word-spacing: var(--bktcl-bd-ws-t, var(--bktcl-bd-ws-d));
60 }
61 .bkbg-tc-pullquote {
62 font-size: var(--bktcl-pq-fs-t, var(--bktcl-pq-fs-d, 1.2em));
63 line-height: var(--bktcl-pq-lh-t, var(--bktcl-pq-lh-d, 1.4));
64 letter-spacing: var(--bktcl-pq-ls-t, var(--bktcl-pq-ls-d));
65 word-spacing: var(--bktcl-pq-ws-t, var(--bktcl-pq-ws-d));
66 }
67 }
68 @media (max-width: 767px) {
69 .bkbg-tc-col {
70 font-size: var(--bktcl-bd-fs-m, var(--bktcl-bd-fs-t, var(--bktcl-bd-fs-d, 16px)));
71 line-height: var(--bktcl-bd-lh-m, var(--bktcl-bd-lh-t, var(--bktcl-bd-lh-d, 1.75)));
72 letter-spacing: var(--bktcl-bd-ls-m, var(--bktcl-bd-ls-t, var(--bktcl-bd-ls-d)));
73 word-spacing: var(--bktcl-bd-ws-m, var(--bktcl-bd-ws-t, var(--bktcl-bd-ws-d)));
74 }
75 .bkbg-tc-pullquote {
76 font-size: var(--bktcl-pq-fs-m, var(--bktcl-pq-fs-t, var(--bktcl-pq-fs-d, 1.2em)));
77 line-height: var(--bktcl-pq-lh-m, var(--bktcl-pq-lh-t, var(--bktcl-pq-lh-d, 1.4)));
78 letter-spacing: var(--bktcl-pq-ls-m, var(--bktcl-pq-ls-t, var(--bktcl-pq-ls-d)));
79 word-spacing: var(--bktcl-pq-ws-m, var(--bktcl-pq-ws-t, var(--bktcl-pq-ws-d)));
80 }
81 }
82
83 /* Responsive: stack below 640 px */
84 @media (max-width: 640px) {
85 .bkbg-tc-grid {
86 flex-direction: column;
87 }
88 .bkbg-tc-col {
89 border-left: none !important;
90 padding-left: 0 !important;
91 }
92 }
93