-
Notifications
You must be signed in to change notification settings - Fork 0
/
_experts.scss
110 lines (110 loc) · 2.93 KB
/
_experts.scss
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
.expert_doctors_area{
padding-top: 120px;
padding-bottom: 120px;
&.doctor_page{
padding-bottom: 80px;
}
@media #{$mobile_device} {
padding-top: 80px;
padding-bottom: 80px;
}
.doctors_title{
h3{
font-size: 36px;
font-weight: 500;
color: #1F1F1F;
@media #{$mobile_device} {
font-size: 24px;
}
}
}
.single_expert{
.expert_thumb{
border-top-left-radius: 5px;
border-top-right-radius: 5px;
overflow: hidden;
img{
@include transition(.3s);
@include transform(scale(1));
width: 100%;
}
}
.experts_name{
@include transition(.3s);
background: #F5FBFF;
padding-top: 16px;
padding-bottom: 18px;
h3{
font-size: 20px;
font-weight: 500;
margin-bottom: 1px;
@include transition(.3s);
}
span{
color: #919191;
font-size: 13px;
@include transition(.3s);
}
}
&:hover{
.expert_thumb{
img{
@include transform(scale(1.03));
}
}
.experts_name{
background: #5DB2FF;
h3{
color: #fff;
}
span{
color: #fff;
}
}
}
}
.owl-carousel {
.owl-nav div {
background: transparent;
height: 40px;
left: 0px;
text-align: center;
-webkit-transform: translateY(0%);
-ms-transform: translateY(0%);
transform: translateY(0%);
width: 40px;
color: #919191;
background-color: transparent;
@include border-radius(5px);
font-size: 15px;
line-height: 40px;
border: 1px solid #EEEEEE;
left: auto;
left: auto;
top: -100px;
right: 55px;
}
.owl-nav{
div{
&.owl-next{
// left: 86px;
// right: auto;
left: auto;
right: 0;
i{
position: relative;
right: 0;
// top: 1px;
}
}
&.owl-prev{
i{
position: relative;
// right: 1px;
top: 0px;
}
}
}
}
}
}