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 / comparison-section / style.css

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

110 lines 5.1 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 /* Comparison Section */
2 .bkbg-comparison-section-wrap { box-sizing: border-box; }
3
4 .bkbg-cmp-inner { max-width: var(--bkbg-cmp-max, 1200px); margin: 0 auto; text-align: center; }
5
6 .bkbg-cmp-heading {
7 margin: 0 0 16px;
8 font-family: var(--bkcs-heading-font-family, inherit);
9 font-size: var(--bkcs-heading-font-size-d, 36px);
10 font-weight: var(--bkcs-heading-font-weight, 700);
11 line-height: var(--bkcs-heading-line-height-d, 1.2);
12 text-transform: var(--bkcs-heading-text-transform, none);
13 font-style: var(--bkcs-heading-font-style, normal);
14 text-decoration: var(--bkcs-heading-text-decoration, none);
15 letter-spacing: var(--bkcs-heading-letter-spacing-d, normal);
16 word-spacing: var(--bkcs-heading-word-spacing-d, normal);
17 }
18 .bkbg-cmp-subtext {
19 margin: 0 0 48px;
20 font-family: var(--bkcs-body-font-family, inherit);
21 font-size: var(--bkcs-body-font-size-d, 16px);
22 font-weight: var(--bkcs-body-font-weight, 400);
23 line-height: var(--bkcs-body-line-height-d, 1.7);
24 text-transform: var(--bkcs-body-text-transform, none);
25 font-style: var(--bkcs-body-font-style, normal);
26 text-decoration: var(--bkcs-body-text-decoration, none);
27 letter-spacing: var(--bkcs-body-letter-spacing-d, normal);
28 word-spacing: var(--bkcs-body-word-spacing-d, normal);
29 }
30
31 .bkbg-cmp-table-wrap { overflow-x: auto; }
32
33 .bkbg-cmp-table {
34 width: 100%;
35 max-width: var(--bkbg-cmp-table-width, 720px);
36 margin: 0 auto;
37 border-collapse: collapse;
38 border-radius: 12px;
39 overflow: hidden;
40 box-shadow: 0 0 0 1px var(--bkbg-cmp-border, #e5e7eb);
41 }
42
43 .bkbg-cmp-table th,
44 .bkbg-cmp-table td {
45 padding: 16px 24px;
46 border-bottom: 1px solid var(--bkbg-cmp-border, #e5e7eb);
47 }
48
49 .bkbg-cmp-th-feature { text-align: left; width: 50%; }
50 .bkbg-cmp-th-col { width: 25%; }
51
52 .bkbg-cmp-td-feature { text-align: left; }
53 .bkbg-cmp-td-val { text-align: center; }
54
55 .bkbg-cmp-hl-col { background: var(--bkbg-cmp-hl-bg, #7c3aed); color: var(--bkbg-cmp-hl-color, #fff); }
56 .bkbg-cmp-hl-td { background: color-mix(in srgb, var(--bkbg-cmp-hl-bg, #7c3aed) 12%, transparent); }
57
58 .bkbg-cmp-yes { color: var(--bkbg-cmp-yes, #16a34a); font-size: 22px; font-weight: 700; }
59 .bkbg-cmp-no { color: var(--bkbg-cmp-no, #dc2626); font-size: 22px; font-weight: 700; }
60 .bkbg-cmp-partial { color: var(--bkbg-cmp-partial, #d97706); font-size: 20px; }
61
62 .bkbg-cmp-cta-wrap { margin-top: 48px; }
63 .bkbg-cmp-cta-btn {
64 display: inline-flex; align-items: center; gap: 8px;
65 padding: 14px 36px; border-radius: 8px; font-weight: 700;
66 text-decoration: none;
67 transition: opacity .2s, transform .15s;
68 }
69 .bkbg-cmp-cta-btn:hover { opacity: .88; transform: translateY(-1px); }
70
71 /* Icon picker support */
72 .bkbg-cmp-col-icon svg { width: 1em; height: 1em; fill: currentColor; vertical-align: middle; }
73 .bkbg-cmp-col-icon .dashicons { font-size: inherit; width: 1em; height: 1em; line-height: 1; vertical-align: middle; }
74 .bkbg-cmp-col-icon .bkbg-icon-img { width: 1em; height: 1em; object-fit: contain; vertical-align: middle; }
75
76 /* ── Typography responsive ── */
77 @media (max-width: 1024px) {
78 .bkbg-cmp-heading {
79 font-size: var(--bkcs-heading-font-size-t, var(--bkcs-heading-font-size-d, 36px));
80 line-height: var(--bkcs-heading-line-height-t, var(--bkcs-heading-line-height-d, 1.2));
81 letter-spacing: var(--bkcs-heading-letter-spacing-t, var(--bkcs-heading-letter-spacing-d, normal));
82 word-spacing: var(--bkcs-heading-word-spacing-t, var(--bkcs-heading-word-spacing-d, normal));
83 }
84 .bkbg-cmp-subtext {
85 font-size: var(--bkcs-body-font-size-t, var(--bkcs-body-font-size-d, 16px));
86 line-height: var(--bkcs-body-line-height-t, var(--bkcs-body-line-height-d, 1.7));
87 letter-spacing: var(--bkcs-body-letter-spacing-t, var(--bkcs-body-letter-spacing-d, normal));
88 word-spacing: var(--bkcs-body-word-spacing-t, var(--bkcs-body-word-spacing-d, normal));
89 }
90 }
91
92 @media (max-width: 767px) {
93 .bkbg-cmp-heading {
94 font-size: var(--bkcs-heading-font-size-m, var(--bkcs-heading-font-size-t, var(--bkcs-heading-font-size-d, 36px)));
95 line-height: var(--bkcs-heading-line-height-m, var(--bkcs-heading-line-height-t, var(--bkcs-heading-line-height-d, 1.2)));
96 letter-spacing: var(--bkcs-heading-letter-spacing-m, var(--bkcs-heading-letter-spacing-t, var(--bkcs-heading-letter-spacing-d, normal)));
97 word-spacing: var(--bkcs-heading-word-spacing-m, var(--bkcs-heading-word-spacing-t, var(--bkcs-heading-word-spacing-d, normal)));
98 }
99 .bkbg-cmp-subtext {
100 font-size: var(--bkcs-body-font-size-m, var(--bkcs-body-font-size-t, var(--bkcs-body-font-size-d, 16px)));
101 line-height: var(--bkcs-body-line-height-m, var(--bkcs-body-line-height-t, var(--bkcs-body-line-height-d, 1.7)));
102 letter-spacing: var(--bkcs-body-letter-spacing-m, var(--bkcs-body-letter-spacing-t, var(--bkcs-body-letter-spacing-d, normal)));
103 word-spacing: var(--bkcs-body-word-spacing-m, var(--bkcs-body-word-spacing-t, var(--bkcs-body-word-spacing-d, normal)));
104 }
105 }
106
107 @media (max-width: 640px) {
108 .bkbg-cmp-table th, .bkbg-cmp-table td { padding: 12px 14px; font-size: 14px; }
109 }
110