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 / _Buttons.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
_Buttons.scss
66 lines
1 .scroll-down-one {
2 display: inline-block;
3
4 .circle {
5 height: 25px;
6 width: 18px;
7 border-radius: 9px;
8 position: relative;
9 border: 1px solid #fff;
10 box-sizing: border-box;
11
12 &::after {
13 content: "";
14 position: absolute;
15 top: 50%;
16 left: 50%;
17 transform: translate(-50%, -50%);
18 height: 6px;
19 width: 1px;
20 background-color: #fff;
21 }
22 }
23
24 .arrow-cont {
25 cursor: pointer;
26 position: relative;
27 display: inline-block;
28 height: 20px;
29 width: 20px;
30
31 i {
32 position: absolute;
33 bottom: 0;
34 background-size: contain;
35 top: 2px;
36 left: 0%;
37 font-size: 17px;
38 color: #fff;
39
40 &:nth-child(2) {
41 margin-top: 5.5px;
42 }
43
44 &:nth-child(3) {
45 margin-top: 11.5px;
46 }
47 }
48 }
49
50 &:hover {
51 i {
52 animation-name: bounceAlphaUpper;
53 animation-duration: 1.4s;
54 animation-iteration-count: infinite;
55 animation-timing-function: linear;
56
57 &:nth-child(1) {
58 animation-delay: 0.4s;
59 }
60
61 &:nth-child(2) {
62 animation-delay: 0.2s;
63 }
64 }
65 }
66 }