PluginProbe ʕ •ᴥ•ʔ
Spider Elements – Premium Elementor Widgets & Addons Library / 1.1.0
Spider Elements – Premium Elementor Widgets & Addons Library v1.1.0
trunk 1.0.0 1.1.0 1.5.0 1.6.0 1.6.1 1.6.2 1.6.3 1.6.4 1.6.5 1.6.6 1.6.7 1.7.0 1.8.0 1.9.0
spider-elements / assets / scss / _Cheat_sheet.scss
spider-elements / assets / scss Last commit date
admin 2 years ago _Accordion.scss 2 years ago _Alerts_box.scss 2 years ago _Animated_Headline.scss 2 years ago _Animation.scss 2 years ago _Before_after.scss 2 years ago _Buttons.scss 2 years ago _Cheat_sheet.scss 2 years ago _Common.scss 2 years ago _Counter.scss 2 years ago _Fullscreen_Slider.scss 2 years ago _Icon_box.scss 2 years ago _Instagram.scss 2 years ago _Integration.scss 2 years ago _List_item.scss 2 years ago _Mixins.scss 2 years ago _Pricing_Table.scss 2 years ago _Pricing_Table_Switcher.scss 2 years ago _Skill_Showcase.scss 2 years ago _Tabs.scss 2 years ago _Testimonial.scss 2 years ago _Timeline.scss 2 years ago _Variables.scss 2 years ago _Video.scss 2 years ago _Video_popup.scss 2 years ago _blog_grid.scss 2 years ago _framework.scss 2 years ago _prefix.scss 2 years ago _team.scss 2 years ago admin.css 2 years ago admin.css.map 2 years ago admin.scss 2 years ago main.css 2 years ago main.css.map 2 years ago main.scss 2 years ago
_Cheat_sheet.scss
107 lines
1 /*========== cheatsheet_info css =========*/
2 .cheatsheet_info {
3 & + .cheatsheet_info {
4 margin-top: 30px;
5 }
6 }
7
8 .cheatsheet_accordian {
9 .card {
10 border: 0;
11 padding: 0;
12 overflow: visible;
13 margin-top: 10px;
14 background: transparent;
15
16 .card-header {
17 padding: 0;
18 border: 0;
19 background: transparent;
20
21 button {
22 padding: 0;
23 font-size: 20px;
24 font-weight: 600;
25 margin-bottom: 30px;
26 background: transparent;
27 color: rgb(29 39 70);
28 text-decoration: none;
29 margin-left: 8px;
30 border: none;
31
32 .minus {
33 display: inline-block;
34 }
35
36 .pluse {
37 display: none;
38 }
39
40 &.active {
41 .pluse {
42 display: inline-block;
43 }
44
45 .minus {
46 display: none;
47 }
48 }
49 }
50 }
51 }
52 .collapse.show {
53 display: block;
54 }
55 }
56
57 .cheatsheet_item {
58 text-align: left;
59 padding: 20px 20px 30px;
60 margin-bottom: 30px;
61 transition: all 0.3s linear;
62 background: #ffffff;
63 box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
64
65 &:hover {
66 box-shadow: 0 20px 27px 20px rgba(4, 73, 89, 0.08);
67 }
68
69 .cheatsheet_num {
70 text-align: right;
71 }
72
73 p {
74 margin-bottom: 0;
75 }
76
77 h5 {
78 margin-bottom: 0;
79 color: rgb(76 76 241);
80 }
81 }
82
83 .light-header {
84 position: absolute;
85 bottom: -23px;
86 left: 0;
87 width: 100%;
88 text-align: center;
89
90 @media (max-width: 768px) {
91 bottom: -10px;
92 }
93
94 .title-light {
95 color: #eff4f7;
96 font-size: 60px;
97 font-weight: 700;
98 line-height: 1;
99 margin: 0;
100
101 @media (max-width: 768px) {
102 font-size: 30px;
103 bottom: -10px;
104 }
105 }
106 }
107