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 / content-upgrade / style.css

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

115 lines 4.7 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 /* Content Upgrade block */
2 .bkbg-cup-app { display: none; }
3
4 .bkbg-cup-wrap {
5 display: flex;
6 align-items: center;
7 gap: 32px;
8 border-radius: 12px;
9 position: relative;
10 }
11
12 .bkbg-cup-wrap.style-boxed {
13 border-width: 2px;
14 border-style: solid;
15 }
16 .bkbg-cup-wrap.style-minimal {
17 border-radius: 0;
18 border-left-width: 4px;
19 border-left-style: solid;
20 background: transparent !important;
21 }
22 .bkbg-cup-wrap.style-inline {
23 border: none;
24 }
25
26 .bkbg-cup-image-col { flex-shrink: 0; }
27 .bkbg-cup-image-col img { width: 140px; height: 140px; object-fit: cover; border-radius: 8px; display: block; }
28 .bkbg-cup-image-placeholder {
29 width: 100px; height: 100px; border-radius: 8px;
30 display: flex; align-items: center; justify-content: center;
31 font-size: 36px; flex-shrink: 0;
32 }
33
34 .bkbg-cup-content { flex: 1; min-width: 0; }
35
36 .bkbg-cup-heading {
37 margin: 0 0 8px;
38 font-family: var(--bkcup-head-font-family, inherit);
39 font-size: var(--bkcup-head-font-size-d, 20px);
40 font-weight: var(--bkcup-head-font-weight, 700);
41 line-height: var(--bkcup-head-line-height-d, 1.3);
42 letter-spacing: var(--bkcup-head-letter-spacing-d, normal);
43 text-transform: var(--bkcup-head-text-transform, none);
44 text-decoration: var(--bkcup-head-text-decoration, none);
45 font-style: var(--bkcup-head-font-style, normal);
46 word-spacing: var(--bkcup-head-word-spacing-d, normal);
47 }
48 .bkbg-cup-desc {
49 margin: 0 0 16px;
50 font-family: var(--bkcup-desc-font-family, inherit);
51 font-size: var(--bkcup-desc-font-size-d, 14px);
52 font-weight: var(--bkcup-desc-font-weight, 400);
53 line-height: var(--bkcup-desc-line-height-d, 1.6);
54 letter-spacing: var(--bkcup-desc-letter-spacing-d, normal);
55 text-transform: var(--bkcup-desc-text-transform, none);
56 text-decoration: var(--bkcup-desc-text-decoration, none);
57 font-style: var(--bkcup-desc-font-style, normal);
58 word-spacing: var(--bkcup-desc-word-spacing-d, normal);
59 }
60
61 .bkbg-cup-form { display: flex; gap: 8px; }
62 .bkbg-cup-input {
63 flex: 1; padding: 10px 14px; border-width: 1px; border-style: solid;
64 border-radius: 6px; font-size: 14px; outline: none;
65 }
66 .bkbg-cup-submit {
67 padding: 10px 20px; border: none; border-radius: 6px;
68 font-weight: 600; font-size: 14px; cursor: pointer;
69 white-space: nowrap; transition: opacity 0.2s;
70 }
71 .bkbg-cup-submit:hover { opacity: 0.88; }
72
73 .bkbg-cup-success {
74 display: none; padding: 12px 16px; border-radius: 6px;
75 font-size: 14px; font-weight: 600; text-align: center;
76 margin-top: 8px;
77 }
78 .bkbg-cup-success.visible { display: block; }
79
80 @media (max-width: 1024px) {
81 .bkbg-cup-heading {
82 font-size: var(--bkcup-head-font-size-t, var(--bkcup-head-font-size-d, 20px));
83 line-height: var(--bkcup-head-line-height-t, var(--bkcup-head-line-height-d, 1.3));
84 letter-spacing: var(--bkcup-head-letter-spacing-t, var(--bkcup-head-letter-spacing-d, normal));
85 word-spacing: var(--bkcup-head-word-spacing-t, var(--bkcup-head-word-spacing-d, normal));
86 }
87 .bkbg-cup-desc {
88 font-size: var(--bkcup-desc-font-size-t, var(--bkcup-desc-font-size-d, 14px));
89 line-height: var(--bkcup-desc-line-height-t, var(--bkcup-desc-line-height-d, 1.6));
90 letter-spacing: var(--bkcup-desc-letter-spacing-t, var(--bkcup-desc-letter-spacing-d, normal));
91 word-spacing: var(--bkcup-desc-word-spacing-t, var(--bkcup-desc-word-spacing-d, normal));
92 }
93 }
94 @media (max-width: 767px) {
95 .bkbg-cup-heading {
96 font-size: var(--bkcup-head-font-size-m, var(--bkcup-head-font-size-t, var(--bkcup-head-font-size-d, 18px)));
97 line-height: var(--bkcup-head-line-height-m, var(--bkcup-head-line-height-t, var(--bkcup-head-line-height-d, 1.3)));
98 letter-spacing: var(--bkcup-head-letter-spacing-m, var(--bkcup-head-letter-spacing-t, var(--bkcup-head-letter-spacing-d, normal)));
99 word-spacing: var(--bkcup-head-word-spacing-m, var(--bkcup-head-word-spacing-t, var(--bkcup-head-word-spacing-d, normal)));
100 }
101 .bkbg-cup-desc {
102 font-size: var(--bkcup-desc-font-size-m, var(--bkcup-desc-font-size-t, var(--bkcup-desc-font-size-d, 13px)));
103 line-height: var(--bkcup-desc-line-height-m, var(--bkcup-desc-line-height-t, var(--bkcup-desc-line-height-d, 1.6)));
104 letter-spacing: var(--bkcup-desc-letter-spacing-m, var(--bkcup-desc-letter-spacing-t, var(--bkcup-desc-letter-spacing-d, normal)));
105 word-spacing: var(--bkcup-desc-word-spacing-m, var(--bkcup-desc-word-spacing-t, var(--bkcup-desc-word-spacing-d, normal)));
106 }
107 }
108
109 @media (max-width: 640px) {
110 .bkbg-cup-wrap { flex-direction: column; text-align: center; }
111 .bkbg-cup-form { flex-direction: column; }
112 .bkbg-cup-submit { width: 100%; }
113 .bkbg-cup-image-col img { width: 80px; height: 80px; }
114 }
115