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

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

95 lines 3.9 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 /* ── Logo Wall ──────────────────────────────────────────────────────────────── */
2 .bklw-wrap {
3 box-sizing: border-box;
4 }
5
6 .bklw-grid {
7 box-sizing: border-box;
8 }
9
10 .bklw-card {
11 box-sizing: border-box;
12 transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
13 }
14
15 .bklw-img {
16 display: block;
17 max-width: 100%;
18 object-fit: contain;
19 transition: filter 0.3s ease, opacity 0.3s ease, transform 0.25s ease;
20 }
21
22 .bklw-name {
23 margin: 8px 0 0;
24 font-family: var(--bklw-n-font-family, inherit);
25 font-size: var(--bklw-n-font-size-d, 13px);
26 font-weight: var(--bklw-n-font-weight, 400);
27 font-style: var(--bklw-n-font-style, normal);
28 line-height: var(--bklw-n-line-height-d, 1.3);
29 letter-spacing: var(--bklw-n-letter-spacing-d, normal);
30 word-spacing: var(--bklw-n-word-spacing-d, normal);
31 text-decoration: var(--bklw-n-text-decoration, none);
32 text-transform: var(--bklw-n-text-transform, none);
33 }
34
35 .bklw-title {
36 font-family: var(--bklw-tt-font-family, inherit);
37 font-size: var(--bklw-tt-font-size-d, 14px);
38 font-weight: var(--bklw-tt-font-weight, 600);
39 font-style: var(--bklw-tt-font-style, normal);
40 line-height: var(--bklw-tt-line-height-d, 1.4);
41 letter-spacing: var(--bklw-tt-letter-spacing-d, 0.08em);
42 word-spacing: var(--bklw-tt-word-spacing-d, normal);
43 text-decoration: var(--bklw-tt-text-decoration, none);
44 text-transform: var(--bklw-tt-text-transform, uppercase);
45 }
46
47 @media (max-width: 640px) {
48 .bklw-grid {
49 grid-template-columns: repeat(2, 1fr) !important;
50 }
51 }
52
53 @media (max-width: 380px) {
54 .bklw-grid {
55 grid-template-columns: 1fr !important;
56 }
57 }
58
59 @media (prefers-reduced-motion: reduce) {
60 .bklw-card,
61 .bklw-img {
62 transition: none !important;
63 }
64 }
65
66 /* ── Responsive typography ─────────────────────────────── */
67 @media (max-width: 1024px) {
68 .bklw-title {
69 font-size: var(--bklw-tt-font-size-t, var(--bklw-tt-font-size-d, 14px));
70 line-height: var(--bklw-tt-line-height-t, var(--bklw-tt-line-height-d, 1.4));
71 letter-spacing: var(--bklw-tt-letter-spacing-t, var(--bklw-tt-letter-spacing-d, 0.08em));
72 word-spacing: var(--bklw-tt-word-spacing-t, var(--bklw-tt-word-spacing-d, normal));
73 }
74 .bklw-name {
75 font-size: var(--bklw-n-font-size-t, var(--bklw-n-font-size-d, 13px));
76 line-height: var(--bklw-n-line-height-t, var(--bklw-n-line-height-d, 1.3));
77 letter-spacing: var(--bklw-n-letter-spacing-t, var(--bklw-n-letter-spacing-d, normal));
78 word-spacing: var(--bklw-n-word-spacing-t, var(--bklw-n-word-spacing-d, normal));
79 }
80 }
81 @media (max-width: 767px) {
82 .bklw-title {
83 font-size: var(--bklw-tt-font-size-m, var(--bklw-tt-font-size-t, var(--bklw-tt-font-size-d, 14px)));
84 line-height: var(--bklw-tt-line-height-m, var(--bklw-tt-line-height-t, var(--bklw-tt-line-height-d, 1.4)));
85 letter-spacing: var(--bklw-tt-letter-spacing-m, var(--bklw-tt-letter-spacing-t, var(--bklw-tt-letter-spacing-d, 0.08em)));
86 word-spacing: var(--bklw-tt-word-spacing-m, var(--bklw-tt-word-spacing-t, var(--bklw-tt-word-spacing-d, normal)));
87 }
88 .bklw-name {
89 font-size: var(--bklw-n-font-size-m, var(--bklw-n-font-size-t, var(--bklw-n-font-size-d, 13px)));
90 line-height: var(--bklw-n-line-height-m, var(--bklw-n-line-height-t, var(--bklw-n-line-height-d, 1.3)));
91 letter-spacing: var(--bklw-n-letter-spacing-m, var(--bklw-n-letter-spacing-t, var(--bklw-n-letter-spacing-d, normal)));
92 word-spacing: var(--bklw-n-word-spacing-m, var(--bklw-n-word-spacing-t, var(--bklw-n-word-spacing-d, normal)));
93 }
94 }
95