-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathTR.css
More file actions
108 lines (107 loc) · 1.96 KB
/
TR.css
File metadata and controls
108 lines (107 loc) · 1.96 KB
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
.our-team{
text-align: center;
position: relative;
color: white;
}
.our-team:before,
.our-team:after{
content: "";
display: block;
width: 100%;
height: 2px;
position: absolute;
bottom: 0;
left: 0;
transition: all 0.3s linear 0s;
}
.our-team:before{
background: #e44e7b;
transform: scale(0);
z-index: 1;
}
.our-team:hover:before{
transform: scale(1);
}
.our-team:after{
background: #d4d4d4;
}
.our-team .pic{
border-radius: 50%;
overflow: hidden;
position: relative;
}
.our-team .pic:before{
content: "";
width: 100%;
height: 100%;
border-radius: 50%;
background: rgba(53, 53, 53, 0.7);
position: absolute;
top: 0;
left: 0;
opacity: 0;
transform: scale(1.2);
transition: all 0.3s linear 0s;
}
.our-team:hover .pic:before{
opacity: 1;
transform: scale(0.97);
}
.our-team img{
width: 100%;
height: auto;
border-radius: 50%;
}
.our-team .social{
width: 100%;
position: absolute;
top: 45%;
left: 0;
padding: 0;
margin: 0;
list-style: none;
opacity: 0;
transform: scale(1.2);
transition: all 0.3s linear 0s;
}
.our-team:hover .social{
opacity: 1;
transform: scale(1);
}
.our-team .social li{
display: inline-block;
}
.our-team .social li a{
display: inline-block;
width: 50px;
height: 50px;
line-height: 50px;
border-radius: 50%;
background: #fff;
margin: 0 3px;
font-size: 14px;
color: #e44e7b;
transition: all 0.3s linear 0s;
}
.our-team .social li a:hover{
background: #e44e7b;
color: #fff;
}
.our-team .team-content{
padding-bottom: 35px;
}
.our-team .title{
font-size: 22px;
font-weight: bold;
color: #2a2b2f;
text-transform: capitalize;
margin: 15px 0 10px 0;
}
.our-team .post{
font-size: 18px;
color: #696969;
text-transform: capitalize;
}
@media only screen and (max-width: 990px){
.our-team{ margin-bottom: 30px; }
}