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 / social-share / style.css

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

86 lines 3.8 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 .bkbg-shs-wrap {
2 display: flex;
3 flex-wrap: wrap;
4 align-items: center;
5 gap: var(--bkbg-shs-gap, 8px);
6 }
7 .bkbg-shs-wrap.bkbg-shs-align--left { justify-content: flex-start; }
8 .bkbg-shs-wrap.bkbg-shs-align--center { justify-content: center; }
9 .bkbg-shs-wrap.bkbg-shs-align--right { justify-content: flex-end; }
10
11 /* ── label / heading typography ── */
12 .bkbg-shs-heading {
13 font-family: var(--bkshs-lb-font-family, inherit);
14 font-size: var(--bkshs-lb-font-size-d, 13px);
15 font-weight: var(--bkshs-lb-font-weight, 600);
16 font-style: var(--bkshs-lb-font-style, normal);
17 text-decoration: var(--bkshs-lb-text-decoration, none);
18 text-transform: var(--bkshs-lb-text-transform, none);
19 line-height: var(--bkshs-lb-line-height-d, normal);
20 letter-spacing: var(--bkshs-lb-letter-spacing-d, normal);
21 word-spacing: var(--bkshs-lb-word-spacing-d, normal);
22 color: #374151;
23 }
24
25 /* ── button typography ── */
26 .bkbg-shs-btn {
27 display: inline-flex;
28 align-items: center;
29 justify-content:center;
30 gap: 6px;
31 text-decoration:none;
32 border: none;
33 cursor: pointer;
34 transition: opacity 0.2s, transform 0.15s;
35 white-space: nowrap;
36 line-height: 1;
37 font-family: var(--bkshs-lb-font-family, inherit);
38 font-size: var(--bkshs-lb-font-size-d, 13px);
39 font-weight: var(--bkshs-lb-font-weight, 600);
40 font-style: var(--bkshs-lb-font-style, normal);
41 text-transform: var(--bkshs-lb-text-transform, none);
42 letter-spacing: var(--bkshs-lb-letter-spacing-d, normal);
43 word-spacing: var(--bkshs-lb-word-spacing-d, normal);
44 }
45 .bkbg-shs-btn:hover {
46 opacity: 0.85;
47 transform: translateY(-2px);
48 }
49 .bkbg-shs-btn svg {
50 width: 16px;
51 height:16px;
52 flex-shrink: 0;
53 }
54
55 /* ── tablet ── */
56 @media (max-width: 1024px) {
57 .bkbg-shs-heading {
58 font-size: var(--bkshs-lb-font-size-t, var(--bkshs-lb-font-size-d, 13px));
59 line-height: var(--bkshs-lb-line-height-t, var(--bkshs-lb-line-height-d, normal));
60 letter-spacing: var(--bkshs-lb-letter-spacing-t, var(--bkshs-lb-letter-spacing-d, normal));
61 word-spacing: var(--bkshs-lb-word-spacing-t, var(--bkshs-lb-word-spacing-d, normal));
62 }
63 .bkbg-shs-btn {
64 font-size: var(--bkshs-lb-font-size-t, var(--bkshs-lb-font-size-d, 13px));
65 letter-spacing: var(--bkshs-lb-letter-spacing-t, var(--bkshs-lb-letter-spacing-d, normal));
66 word-spacing: var(--bkshs-lb-word-spacing-t, var(--bkshs-lb-word-spacing-d, normal));
67 line-height: var(--bkshs-lb-line-height-t, var(--bkshs-lb-line-height-d, normal));
68 }
69 }
70
71 /* ── mobile ── */
72 @media (max-width: 767px) {
73 .bkbg-shs-heading {
74 font-size: var(--bkshs-lb-font-size-m, var(--bkshs-lb-font-size-t, var(--bkshs-lb-font-size-d, 13px)));
75 line-height: var(--bkshs-lb-line-height-m, var(--bkshs-lb-line-height-t, var(--bkshs-lb-line-height-d, normal)));
76 letter-spacing: var(--bkshs-lb-letter-spacing-m, var(--bkshs-lb-letter-spacing-t, var(--bkshs-lb-letter-spacing-d, normal)));
77 word-spacing: var(--bkshs-lb-word-spacing-m, var(--bkshs-lb-word-spacing-t, var(--bkshs-lb-word-spacing-d, normal)));
78 }
79 .bkbg-shs-btn {
80 font-size: var(--bkshs-lb-font-size-m, var(--bkshs-lb-font-size-t, var(--bkshs-lb-font-size-d, 13px)));
81 letter-spacing: var(--bkshs-lb-letter-spacing-m, var(--bkshs-lb-letter-spacing-t, var(--bkshs-lb-letter-spacing-d, normal)));
82 word-spacing: var(--bkshs-lb-word-spacing-m, var(--bkshs-lb-word-spacing-t, var(--bkshs-lb-word-spacing-d, normal)));
83 line-height: var(--bkshs-lb-line-height-m, var(--bkshs-lb-line-height-t, var(--bkshs-lb-line-height-d, normal)));
84 }
85 }
86