PluginProbe
King Addons for Elementor – 100+ Elementor Widgets, 4 000+ Elementor Templates, WooCommerce Builder, Mega Menu, Popup Builder / 51.1.83
King Addons for Elementor – 100+ Elementor Widgets, 4 000+ Elementor Templates, WooCommerce Builder, Mega Menu, Popup Builder v51.1.83
51.1.84 51.1.85 51.1.83 51.1.82 51.1.81 51.1.79 51.1.78 51.1.77 51.1.76 51.1.74 51.1.75 51.1.65 51.1.64 51.1.63 trunk 51.1.14 51.1.2 51.1.35 51.1.36 51.1.37 51.1.38 51.1.39 51.1.44 51.1.45 51.1.46 All 39 releases
king-addons / includes / widgets / Woo_Product_Badges / style.css

style.css in King Addons for Elementor – 100+ Elementor Widgets, 4 000+ Elementor Templates, WooCommerce Builder, Mega Menu, Popup Builder 51.1.83, at includes/widgets/Woo_Product_Badges/style.css

48 lines 1.0 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 .ka-woo-badges {
2 /* inline-flex shrinks to the pills, so justify-content: flex-end
3 (top-right / bottom-right) had nothing to push against. */
4 display: flex;
5 width: 100%;
6 gap: 6px;
7 flex-wrap: wrap;
8 }
9
10 .ka-woo-badges--top-left { justify-content: flex-start; }
11 .ka-woo-badges--top-right { justify-content: flex-end; }
12 .ka-woo-badges--bottom-left { justify-content: flex-start; }
13 .ka-woo-badges--bottom-right { justify-content: flex-end; }
14
15 .ka-woo-badge {
16 display: inline-flex;
17 align-items: center;
18 padding: 4px 8px;
19 font-size: 12px;
20 font-weight: 700;
21 border-radius: 999px;
22 color: #fff;
23 background: #111;
24 box-shadow: 0 6px 12px rgba(17, 24, 39, 0.18);
25 }
26
27 .ka-woo-badge--sale {
28 background: linear-gradient(135deg, #ef4444, #dc2626);
29 }
30
31 .ka-woo-badge--new {
32 background: linear-gradient(135deg, #22c55e, #16a34a);
33 }
34
35 .ka-woo-badge--best {
36 background: linear-gradient(135deg, #2563eb, #1d4ed8);
37 }
38
39 .ka-woo-badge--custom {
40 background: linear-gradient(135deg, #f59e0b, #d97706);
41 }
42
43
44
45
46
47
48