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 / _Skill_Showcase.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
_Skill_Showcase.scss
157 lines
1 @keyframes blinkwithopacity {
2 0% {
3 transform: scale(0);
4 opacity: 0.2;
5 }
6
7 50% {
8 transform: scale(1);
9 opacity: 1;
10 }
11
12 100% {
13 transform: scale(0);
14 opacity: 0.2;
15 }
16 }
17
18 .skill-showcase {
19 position: relative;
20 height: 472px;
21
22 span {
23 position: absolute;
24 position: absolute;
25 color: #d92c0a;
26 font-size: 22px;
27 font-family: "IBM Plex Sans", sans-serif;
28 font-weight: 700;
29 text-transform: capitalize;
30 animation: blinkwithopacity 5s ease-in-out infinite;
31
32 &.small {
33 font-size: 16px;
34 animation-duration: 6s;
35 }
36
37 &.big {
38 font-size: 24px;
39 animation-duration: 4s;
40 }
41
42 &:nth-child(1) {
43 top: 10%;
44 left: 51%;
45 }
46
47 &:nth-child(2) {
48 top: 25%;
49 left: 25%;
50 animation-delay: 0.4s;
51 }
52
53 &:nth-child(3) {
54 top: 25%;
55 left: 85%;
56 animation-delay: 2s;
57 }
58
59 &:nth-child(4) {
60 top: 25%;
61 left: 59%;
62 animation-delay: 1s;
63 }
64
65 &:nth-child(5) {
66 top: 39%;
67 left: 5%;
68 animation-delay: 2.2s;
69 }
70
71 &:nth-child(6) {
72 top: 40%;
73 left: 25%;
74 }
75
76 &:nth-child(7) {
77 top: 39%;
78 left: 55%;
79 animation-delay: 2s;
80 }
81
82 &:nth-child(8) {
83 top: 43%;
84 left: 75%;
85 animation-delay: 0.9s;
86 }
87
88 &:nth-child(9) {
89 top: 53%;
90 left: 83%;
91 }
92
93 &:nth-child(10) {
94 top: 52%;
95 left: 34%;
96 animation-delay: 1.9s;
97 }
98
99 &:nth-child(11) {
100 top: 55%;
101 left: 61%;
102 animation-delay: 0.8s;
103 }
104
105 &:nth-child(12) {
106 top: 56%;
107 left: 95%;
108 }
109
110 &:nth-child(13) {
111 top: 57%;
112 left: 11%;
113 animation-delay: 1.9s;
114 }
115
116 &:nth-child(14) {
117 top: 64%;
118 left: 47%;
119 animation-delay: 0.7s;
120 }
121
122 &:nth-child(15) {
123 top: 74%;
124 left: 16%;
125 animation-delay: 1.1s;
126 }
127
128 &:nth-child(16) {
129 top: 69%;
130 left: 35%;
131 }
132
133 &:nth-child(17) {
134 top: 69%;
135 animation-delay: 1.9s;
136 left: 86%;
137 }
138
139 &:nth-child(18) {
140 top: 85%;
141 left: 75%;
142 animation-delay: 0.8s;
143 }
144
145 &:nth-child(19) {
146 top: 85%;
147 left: 13%;
148 }
149
150 &:nth-child(20) {
151 top: 81%;
152 animation-delay: 2s;
153 left: 48%;
154 }
155 }
156 }
157