PluginProbe
Easy Elements for Elementor – Addons & Website Templates / 1.5.0
Easy Elements for Elementor – Addons & Website Templates v1.5.0
1.5.3 1.5.2 1.5.1 1.5.0 1.4.9 1.4.6 1.4.7 1.4.8 1.4.5 1.4.4 1.4.3 1.2.7 1.2.8 1.2.9 1.3.0 1.3.1 1.3.2 1.3.3 1.3.4 1.3.5 1.3.6 1.3.7 1.3.8 1.3.9 1.4.0 All 47 releases
easy-elements / widgets / faq / css / faq.css

faq.css in Easy Elements for Elementor – Addons & Website Templates 1.5.0, at widgets/faq/css/faq.css

100 lines 1.6 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 :root {
2 --e-global-color-primary: #FFD012;
3 --e-global-color-secondary: #0B3665;
4 }
5
6 .eel-faq-accordion {
7 display: inline-grid;
8 gap: 16px;
9 width: 100%;
10 }
11
12 .eel-faq-item {
13 background: #fbfbfb;
14 border-radius: 16px;
15 border: 1px solid rgba(255, 255, 255, 0.15);
16 box-shadow: 0px 4px 6px -6px rgba(0, 0, 0, 0.25);
17 padding: 32px;
18 }
19
20 .eel-faq-sticky .eel-faq-item {
21 position: sticky;
22 top: 70px;
23 }
24
25 .sticky-enabled-overlap-faq {
26 overflow-x: visible !important;
27 }
28
29 .eel-faq-item.active .eel-faq-question {
30 padding-bottom: 15px;
31 }
32
33 .eel-faq-open-all .eel-faq-item .eel-faq-question {
34 padding-bottom: 12px;
35 }
36
37 .eel-faq-question {
38 cursor: pointer;
39 display: flex;
40 justify-content: space-between;
41 gap: 10px;
42 border-radius: 16px;
43 transition: all 0.2s ease;
44 align-items: center;
45 }
46
47 .eel-faq-icon {
48 font-size: 24px;
49 line-height: 0;
50 transform: translateY(3px);
51 text-align: center;
52 }
53 .eel-faq-icon svg {
54 height: 0.7em;
55 fill: #000;
56 }
57
58 .eel-faq-icon-close {
59 display: inline-block;
60 }
61
62 .eel-faq-icon-open {
63 display: none;
64 }
65
66 .eel-faq-item.active .eel-faq-icon-close {
67 display: none;
68 }
69
70 .eel-faq-item.active .eel-faq-icon-open {
71 display: inline-block;
72 }
73
74 .eel-faq-answer {
75 overflow: hidden;
76 display: none;
77 }
78
79 .eel-faq-title {
80 margin: 0;
81 width: 100%;
82 }
83
84 .eel-faq-open-all .eel-faq-answer {
85 display: block !important;
86 }
87
88 .eel-faq-open-all .eel-faq-icon {
89 display: none !important;
90 }
91
92 @media screen and (max-width: 1024px) {
93 body.sticky-enabled-overlap-faq {
94 overflow-x: hidden !important;
95 }
96 .eel-faq-sticky .eel-faq-item {
97 position: unset;
98 top: 0px;
99 }
100 }