forked from Teamexe/Online_polling_app
-
Notifications
You must be signed in to change notification settings - Fork 0
/
team.css
87 lines (86 loc) · 2.29 KB
/
team.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
body{
margin-top:100px!important;
}
.our-team{
padding-bottom: 20px;
text-align: center;
}
.our-team .pic{
display: inline-block;
width: 220px;
height: 220px;
border-radius: 50%;
background: #FABC3C;
padding: 70px 20px 30px;
margin-bottom: 20px;
position: relative;
}
.our-team .social{
padding: 0;
margin: 22% 0 0 0;
list-style: none;
}
.our-team .social li{
display: inline-block;
margin-right: 5px;
}
.our-team .social li a{
display: block;
width: 35px;
height: 35px;
border-radius: 50%;
line-height:35px;
background: #7740ff;
font-size: 15px;
color: #fff;
}
.our-team .social li a:hover{
background: #fff;
color: #7740ff;
text-decoration: none;
}
.our-team .pic img{
width: 101%;
height: 101%;
border-radius: 50%;
position: absolute;
top: -1px;
left: -1px;
transition: all 0.6s ease 0s;
}
.our-team:hover .pic img{
transform: rotate(-120deg);
transform-origin: 95% 40% 0;
}
.our-team .title{
display: block;
font-size: 20px;
font-weight: 700;
color: #7740ff;
letter-spacing: 1px;
margin-bottom: 15px;
position: relative;
}
.our-team .title:after{
content: "";
width: 30px;
height: 3px;
background: #FABC3C;
margin: 0 auto;
position: absolute;
bottom: -10px;
left: 0;
right: 0;
}
.our-team .post {
display: block;
font-size: 15px;
color: #333;
text-transform: capitalise;
}
@media only screen and (max-width: 990px){
.our-team{ margin-bottom: 30px; }
}
@media only screen and (max-width: 767px){
.our-team{ overflow: hidden; }
}