PluginProbe
King Addons for Elementor – 80+ Elementor Widgets, 4 000+ Elementor Templates, WooCommerce, Mega Menu, Popup Builder / 51.1.65
King Addons for Elementor – 80+ Elementor Widgets, 4 000+ Elementor Templates, WooCommerce, Mega Menu, Popup Builder v51.1.65
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 / Review_Schema / style.css

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

98 lines 1.6 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 .king-addons-review {
2 width: 100%;
3 padding: 16px 18px;
4 background: #ffffff;
5 border: 1px solid #e5e7eb;
6 border-radius: 12px;
7 box-shadow: 0 10px 28px rgba(15, 23, 42, 0.08);
8 display: flex;
9 flex-direction: column;
10 gap: 10px;
11 }
12
13 .king-addons-review__header {
14 display: flex;
15 align-items: center;
16 justify-content: space-between;
17 gap: 10px;
18 flex-wrap: wrap;
19 }
20
21 .king-addons-review__item {
22 font-weight: 700;
23 color: #0f172a;
24 }
25
26 .king-addons-review__rating {
27 display: inline-flex;
28 align-items: center;
29 gap: 8px;
30 color: #f59e0b;
31 font-weight: 700;
32 }
33
34 .king-addons-review__stars {
35 display: inline-flex;
36 gap: 2px;
37 font-size: 18px;
38 }
39
40 .king-addons-review__star {
41 display: inline-flex;
42 line-height: 1;
43 }
44
45 .king-addons-review__star.is-half {
46 opacity: 0.7;
47 }
48
49 .king-addons-review__star.is-empty {
50 color: #cbd5e1;
51 }
52
53 .king-addons-review__rating-value {
54 color: #475569;
55 }
56
57 .king-addons-review__title {
58 font-size: 16px;
59 font-weight: 700;
60 color: #0f172a;
61 }
62
63 .king-addons-review__body {
64 color: #475569;
65 line-height: 1.6;
66 }
67
68 .king-addons-review__meta {
69 display: inline-flex;
70 align-items: center;
71 gap: 8px;
72 color: #64748b;
73 font-weight: 600;
74 }
75
76 /* Pro: animations */
77 .king-addons-review__rating.is-anim-pulse {
78 animation: king-addons-review-pulse 1.6s ease-in-out infinite;
79 }
80
81 @keyframes king-addons-review-pulse {
82 0% { transform: scale(1); }
83 50% { transform: scale(1.05); }
84 100% { transform: scale(1); }
85 }
86
87 @media (max-width: 768px) {
88 .king-addons-review {
89 padding: 14px 16px;
90 }
91 }
92
93
94
95
96
97
98