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