PluginProbe
King Addons for Elementor – 80+ Elementor Widgets, 4 000+ Elementor Templates, WooCommerce, Mega Menu, Popup Builder / 51.1.49
King Addons for Elementor – 80+ Elementor Widgets, 4 000+ Elementor Templates, WooCommerce, Mega Menu, Popup Builder v51.1.49
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 51.1.47 51.1.49 All 37 releases
king-addons / includes / widgets / Promo_Bar / style.css

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

131 lines 2.6 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 .king-addons-promo-bar {
2 width: 100%;
3 position: relative;
4 color: #0f172a;
5 background-color: #fef3c7;
6 border: 1px solid #fcd34d;
7 box-shadow: 0 10px 30px rgba(15, 23, 42, 0.12);
8 transition: transform 0.25s ease, opacity 0.25s ease;
9 z-index: 9999;
10 }
11
12 .king-addons-promo-bar[data-position="top"] {
13 top: 0;
14 }
15
16 .king-addons-promo-bar[data-position="bottom"] {
17 bottom: 0;
18 }
19
20 .king-addons-promo-bar[data-sticky="yes"] {
21 position: sticky;
22 }
23
24 .king-addons-promo-bar__inner {
25 display: flex;
26 align-items: center;
27 justify-content: space-between;
28 gap: 12px;
29 padding: 12px 18px;
30 }
31
32 .king-addons-promo-bar__content {
33 display: flex;
34 align-items: center;
35 gap: 10px;
36 flex-wrap: wrap;
37 }
38
39 .king-addons-promo-bar__badge {
40 display: inline-flex;
41 align-items: center;
42 justify-content: center;
43 padding: 6px 10px;
44 background-color: #f97316;
45 color: #fff;
46 border-radius: 999px;
47 font-weight: 700;
48 font-size: 12px;
49 }
50
51 .king-addons-promo-bar__title {
52 font-weight: 700;
53 font-size: 16px;
54 }
55
56 .king-addons-promo-bar__description {
57 color: #475569;
58 font-size: 15px;
59 }
60
61 .king-addons-promo-bar__actions {
62 display: inline-flex;
63 align-items: center;
64 gap: 10px;
65 flex-shrink: 0;
66 }
67
68 .king-addons-promo-bar__button {
69 display: inline-flex;
70 align-items: center;
71 justify-content: center;
72 gap: 8px;
73 padding: 10px 14px;
74 background-color: #111827;
75 color: #ffffff;
76 border-radius: 8px;
77 border: 1px solid #111827;
78 text-decoration: none;
79 font-weight: 600;
80 transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease;
81 }
82
83 .king-addons-promo-bar__button:hover {
84 background-color: #0b1220;
85 border-color: #0b1220;
86 }
87
88 .king-addons-promo-bar__close {
89 display: inline-flex;
90 align-items: center;
91 justify-content: center;
92 width: 34px;
93 height: 34px;
94 border: 1px solid #cbd5e1;
95 background: #ffffff;
96 color: #334155;
97 border-radius: 50%;
98 cursor: pointer;
99 transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
100 }
101
102 .king-addons-promo-bar__close:hover {
103 background-color: #e2e8f0;
104 border-color: #cbd5e1;
105 color: #0f172a;
106 }
107
108 .king-addons-promo-bar.is-hidden {
109 opacity: 0;
110 pointer-events: none;
111 transform: translateY(-6px);
112 }
113
114 @media (max-width: 768px) {
115 .king-addons-promo-bar__inner {
116 flex-direction: column;
117 align-items: flex-start;
118 }
119
120 .king-addons-promo-bar__actions {
121 width: 100%;
122 justify-content: flex-start;
123 }
124 }
125
126
127
128
129
130
131