-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
123 lines (104 loc) · 1.77 KB
/
style.css
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
111
112
113
114
115
116
117
118
119
120
121
122
123
body{
background: #eaeaea !important;
}
.our-team{
padding: 30px 0 40px;
background: #fff;
text-align: center;
overflow: hidden;
position: relative;
}
.our-team .pic{
display: inline-block;
width: 145px;
height: 145px;
margin-bottom: 50px;
/*background: #eb1768;*/
position: relative;
z-index: 1;
/*bottom: 135%;
right: 0;
left: 0;*/
}
.our-team .pic:before{
content: "";
width: 100%;
position: absolute;
bottom: 135%;
right: 0;
left: 0;
transform: scale(3);
background: linear-gradient(45deg, #f39c12, #3498db);
border-radius: 0 0 50% 50%;
}
.our-team:hover .pic:before{
height: 100%;
}
.our-team .pic:after
{
content: "";
width: 100%;
height: 100%;
border-radius: 50%;
background: linear-gradient(45deg, #f39c12, #3498db);
position: absolute;
top: 0;
left: 0;
z-index: -1;
}
.our-team .pic img{
width: 100%;
height: 100%;
border-radius: 50%;
transform: scale(1);
transition: all 0.9s ease 0s;
}
.our-team:hover .pic img{
box-shadow: 0 0 0 14px #f7f5ec;
transform: scale(0.7);
}
.our-team .team-content{
margin-bottom: 35px;
}
.our-team .tittle{
font-size: 22px;
font-weight: 700;
color: #4e5052;
letter-spacing: 1px;
text-transform: capitalize;
margin-bottom: 5px;
}
.our-team .post{
display: block;
font-size: 15px;
color: #4e5052;
text-transform: capitalize;
}
.our-team .social{
width: 100%;
padding: 0;
margin: 0;
background: #eb1768;
position: absolute;
bottom: -100px;
left: 0;
transition: all 0.5s ease 0s;
}
.our-team:hover .social{
bottom: 0;
}
.our-team .social li{
display: inline-block;
}
.our-team .social li a{
display: block;
padding: 10px;
font-size: 17px;
color: #fff;
transition: all 0.3s ease 0s;
}
.our-team .social li a:hover{
color:#eb1768;
background: #f7f5ec;
text-decoration: none;
}