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 / integration-wall / style.css

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

164 lines 7.1 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 .bkbg-igw-editor { box-sizing: border-box; }
2
3 .bkbg-igw-eyebrow {
4 font-size: 13px; font-weight: 700; letter-spacing: .1em;
5 text-transform: uppercase; margin: 0 0 10px;
6 }
7
8 .bkbg-igw-header h2.bkbg-igw-heading,
9 .bkbg-igw-header .bkbg-igw-heading {
10 font-family: var(--bkbg-igw-h-font-family, inherit);
11 font-size: var(--bkbg-igw-h-font-size-d, clamp(24px, 5vw, 38px));
12 font-weight: var(--bkbg-igw-h-font-weight, 800);
13 font-style: var(--bkbg-igw-h-font-style, normal);
14 text-decoration: var(--bkbg-igw-h-text-decoration, none);
15 text-transform: var(--bkbg-igw-h-text-transform, none);
16 line-height: var(--bkbg-igw-h-line-height-d, 1.15);
17 letter-spacing: var(--bkbg-igw-h-letter-spacing-d, normal);
18 word-spacing: var(--bkbg-igw-h-word-spacing-d, normal);
19 margin: 0 0 14px;
20 }
21
22 .bkbg-igw-sub {
23 font-family: var(--bkbg-igw-st-font-family, inherit);
24 font-size: var(--bkbg-igw-st-font-size-d, 17px);
25 font-weight: var(--bkbg-igw-st-font-weight, 400);
26 font-style: var(--bkbg-igw-st-font-style, normal);
27 text-decoration: var(--bkbg-igw-st-text-decoration, none);
28 text-transform: var(--bkbg-igw-st-text-transform, none);
29 line-height: var(--bkbg-igw-st-line-height-d, 1.6);
30 letter-spacing: var(--bkbg-igw-st-letter-spacing-d, normal);
31 word-spacing: var(--bkbg-igw-st-word-spacing-d, normal);
32 max-width: 600px; margin: 0 auto;
33 }
34
35 .bkbg-igw-integ-name {
36 font-family: var(--bkbg-igw-nm-font-family, inherit);
37 font-size: var(--bkbg-igw-nm-font-size-d, 14px);
38 font-weight: var(--bkbg-igw-nm-font-weight, 700);
39 font-style: var(--bkbg-igw-nm-font-style, normal);
40 text-decoration: var(--bkbg-igw-nm-text-decoration, none);
41 text-transform: var(--bkbg-igw-nm-text-transform, none);
42 line-height: var(--bkbg-igw-nm-line-height-d, 1.3);
43 letter-spacing: var(--bkbg-igw-nm-letter-spacing-d, normal);
44 word-spacing: var(--bkbg-igw-nm-word-spacing-d, normal);
45 }
46
47 /* Filter */
48 .bkbg-igw-filter {
49 display: flex; flex-wrap: wrap; gap: 8px;
50 justify-content: center; margin-bottom: 32px;
51 }
52
53 .bkbg-igw-pill {
54 padding: 6px 16px; border-radius: 100px;
55 font-size: 13px; font-weight: 600; border: none; cursor: pointer;
56 transition: background .15s, color .15s;
57 }
58
59 /* Grid */
60 .bkbg-igw-grid {
61 display: grid; gap: 16px;
62 }
63
64 .bkbg-igw-grid.card-style-pill { gap: 8px; }
65
66 /* Cards */
67 .bkbg-igw-card {
68 border: 1px solid #e2e8f0; border-radius: 12px;
69 padding: 16px; display: flex; align-items: center;
70 gap: 12px; transition: transform .2s, box-shadow .2s;
71 text-decoration: none;
72 }
73
74 .bkbg-igw-card:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(0,0,0,.07); }
75
76 .card-style-compact .bkbg-igw-card {
77 flex-direction: column; align-items: center;
78 text-align: center; padding: 20px 12px; gap: 8px;
79 }
80
81 .card-style-pill .bkbg-igw-card {
82 border-radius: 100px; padding: 8px 16px 8px 8px;
83 gap: 8px;
84 }
85
86 .bkbg-igw-logo-img { width: 40px; height: 40px; object-fit: contain; border-radius: 8px; }
87
88 .card-style-compact .bkbg-igw-logo-img { width: 48px; height: 48px; }
89
90 .bkbg-igw-logo-fallback {
91 width: 40px; height: 40px; border-radius: 10px;
92 display: flex; align-items: center; justify-content: center;
93 font-size: 18px; font-weight: 800; flex-shrink: 0;
94 }
95
96 .card-style-compact .bkbg-igw-logo-fallback { width: 48px; height: 48px; font-size: 22px; }
97 .card-style-pill .bkbg-igw-logo-fallback { width: 30px; height: 30px; border-radius: 50%; font-size: 14px; }
98
99 .bkbg-igw-card-body { display: flex; flex-direction: column; gap: 2px; }
100
101 .bkbg-igw-integ-desc { font-size: 12px; line-height: 1.4; }
102
103 .card-style-compact .bkbg-igw-integ-name { font-size: 13px; }
104
105 .bkbg-igw-card.hidden { display: none; }
106
107 /* CTA row */
108 .bkbg-igw-cta-row { text-align: center; margin-top: 40px; }
109
110 .bkbg-igw-cta { font-size: 15px; font-weight: 700; text-decoration: none; }
111 .bkbg-igw-cta:hover { text-decoration: underline; }
112
113 @media (max-width: 1024px) {
114 .bkbg-igw-header h2.bkbg-igw-heading,
115 .bkbg-igw-header .bkbg-igw-heading {
116 font-size: var(--bkbg-igw-h-font-size-t, var(--bkbg-igw-h-font-size-d, clamp(24px, 5vw, 38px)));
117 line-height: var(--bkbg-igw-h-line-height-t, var(--bkbg-igw-h-line-height-d, 1.15));
118 letter-spacing: var(--bkbg-igw-h-letter-spacing-t, var(--bkbg-igw-h-letter-spacing-d, normal));
119 word-spacing: var(--bkbg-igw-h-word-spacing-t, var(--bkbg-igw-h-word-spacing-d, normal));
120 }
121 .bkbg-igw-sub {
122 font-size: var(--bkbg-igw-st-font-size-t, var(--bkbg-igw-st-font-size-d, 17px));
123 line-height: var(--bkbg-igw-st-line-height-t, var(--bkbg-igw-st-line-height-d, 1.6));
124 letter-spacing: var(--bkbg-igw-st-letter-spacing-t, var(--bkbg-igw-st-letter-spacing-d, normal));
125 word-spacing: var(--bkbg-igw-st-word-spacing-t, var(--bkbg-igw-st-word-spacing-d, normal));
126 }
127 .bkbg-igw-integ-name {
128 font-size: var(--bkbg-igw-nm-font-size-t, var(--bkbg-igw-nm-font-size-d, 14px));
129 line-height: var(--bkbg-igw-nm-line-height-t, var(--bkbg-igw-nm-line-height-d, 1.3));
130 letter-spacing: var(--bkbg-igw-nm-letter-spacing-t, var(--bkbg-igw-nm-letter-spacing-d, normal));
131 word-spacing: var(--bkbg-igw-nm-word-spacing-t, var(--bkbg-igw-nm-word-spacing-d, normal));
132 }
133 }
134
135 @media (max-width: 767px) {
136 .bkbg-igw-header h2.bkbg-igw-heading,
137 .bkbg-igw-header .bkbg-igw-heading {
138 font-size: var(--bkbg-igw-h-font-size-m, var(--bkbg-igw-h-font-size-t, var(--bkbg-igw-h-font-size-d, clamp(24px, 5vw, 38px))));
139 line-height: var(--bkbg-igw-h-line-height-m, var(--bkbg-igw-h-line-height-t, var(--bkbg-igw-h-line-height-d, 1.15)));
140 letter-spacing: var(--bkbg-igw-h-letter-spacing-m, var(--bkbg-igw-h-letter-spacing-t, var(--bkbg-igw-h-letter-spacing-d, normal)));
141 word-spacing: var(--bkbg-igw-h-word-spacing-m, var(--bkbg-igw-h-word-spacing-t, var(--bkbg-igw-h-word-spacing-d, normal)));
142 }
143 .bkbg-igw-sub {
144 font-size: var(--bkbg-igw-st-font-size-m, var(--bkbg-igw-st-font-size-t, var(--bkbg-igw-st-font-size-d, 17px)));
145 line-height: var(--bkbg-igw-st-line-height-m, var(--bkbg-igw-st-line-height-t, var(--bkbg-igw-st-line-height-d, 1.6)));
146 letter-spacing: var(--bkbg-igw-st-letter-spacing-m, var(--bkbg-igw-st-letter-spacing-t, var(--bkbg-igw-st-letter-spacing-d, normal)));
147 word-spacing: var(--bkbg-igw-st-word-spacing-m, var(--bkbg-igw-st-word-spacing-t, var(--bkbg-igw-st-word-spacing-d, normal)));
148 }
149 .bkbg-igw-integ-name {
150 font-size: var(--bkbg-igw-nm-font-size-m, var(--bkbg-igw-nm-font-size-t, var(--bkbg-igw-nm-font-size-d, 14px)));
151 line-height: var(--bkbg-igw-nm-line-height-m, var(--bkbg-igw-nm-line-height-t, var(--bkbg-igw-nm-line-height-d, 1.3)));
152 letter-spacing: var(--bkbg-igw-nm-letter-spacing-m, var(--bkbg-igw-nm-letter-spacing-t, var(--bkbg-igw-nm-letter-spacing-d, normal)));
153 word-spacing: var(--bkbg-igw-nm-word-spacing-m, var(--bkbg-igw-nm-word-spacing-t, var(--bkbg-igw-nm-word-spacing-d, normal)));
154 }
155 }
156
157 @media (max-width: 768px) {
158 .bkbg-igw-grid { grid-template-columns: repeat(2, 1fr) !important; }
159 }
160
161 @media (max-width: 480px) {
162 .bkbg-igw-grid { grid-template-columns: 1fr !important; }
163 }
164