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 / _team.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
_team.scss
146 lines
1 // Card Three
2 .expert-slider-one {
3 .item {
4 margin: 0px 15px;
5 }
6 }
7 .card-style-three {
8 .name {
9 font-weight: 500;
10 font-size: 20px;
11 color: #212529;
12 &:hover {
13 color: #244034;
14 text-decoration: underline;
15 }
16 }
17 .img-meta {
18 margin-bottom: 20px;
19 img {
20 border-radius: 200px;
21 }
22 }
23 }
24
25 .card-style-three .post {
26 color: rgba($color: #000000, $alpha: 0.5);
27 }
28
29 // Expert Section
30 .expert-section-one {
31 .slick-arrow-one {
32 position: absolute;
33 right: 0;
34 top: -100px;
35 }
36 }
37 .slick-arrow-one {
38 margin-left: -2px;
39 margin-right: -2px;
40 li {
41 cursor: pointer;
42 width: 50px;
43 height: 50px;
44 border-radius: 50%;
45 color: #000;
46 text-align: center;
47 line-height: 50px;
48 font-size: 22px;
49 transition: all 0.2s linear;
50 display: flex;
51 align-items: center;
52 justify-content: center;
53
54 &:hover {
55 background: #d2f34c;
56 }
57 }
58 &.color-two li:hover {
59 background: #d2f34c;
60 color: #fff;
61 }
62 }
63
64 .expert-slider-two {
65 margin-left: -15px;
66 margin-right: -15px;
67 .slick-slide {
68 margin: 0px 15px;
69 }
70 .slick-dots {
71 position: relative;
72 padding: 0;
73 margin: 65px 0 0;
74 justify-content: center;
75 bottom: 0;
76 display: flex;
77 &:after,
78 &::before {
79 content: "";
80 position: absolute;
81 width: 44%;
82 height: 1px;
83 background: #e0e0e0;
84 top: 4px;
85 left: 0;
86 }
87 &::before {
88 left: auto;
89 right: 0;
90 }
91 li {
92 margin: 0px;
93 padding: 0;
94 width: auto;
95 height: auto;
96 button {
97 text-indent: -50000px;
98 width: 8px;
99 height: 8px;
100 border-radius: 50%;
101 margin: 0 5px;
102 background: #e4e4e4;
103 transition: all 0.3s ease-in-out;
104 }
105 &.slick-active {
106 button {
107 background: #00bf58;
108 }
109 }
110 }
111 }
112 }
113
114 .card-style-eight .img-meta {
115 position: relative;
116 overflow: hidden;
117 margin-bottom: 20px;
118 &::before {
119 content: "";
120 position: absolute;
121 width: 50px;
122 height: 50px;
123 background: #fff;
124 right: -25px;
125 bottom: -25px;
126 transform: rotate(45deg);
127 }
128 img {
129 width: 100%;
130 }
131 }
132 .card-style-eight {
133 .name {
134 font-size: 18px;
135 color: #000;
136 font-weight: 500;
137 &:hover {
138 color: #00bf58;
139 }
140 }
141 .post {
142 font-size: 16px;
143 color: rgba(0, 0, 0, 0.7);
144 }
145 }
146