forked from aiclub-igdtuw/AI-Club
-
Notifications
You must be signed in to change notification settings - Fork 4
/
team.css
81 lines (78 loc) · 1.34 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
html{
background: #000000;
margin-top: 100px;
}
.container{
background: #000000;
}
.our-team{
border-radius: 15px;
text-align: center;
padding: 20px 15px 30px;
background: #fff;
}
.our-team .pic{
background: #fff;
padding: 10px;
margin-bottom: 25px;
display: inline-block;
width: 100%;
height: 100%;
transition: all 0.5s ease 0s;
}
.our-team:hover .pic{
background: #17bebb;
border-radius: 50%;
}
.pic img{
width: 100%;
height: auto;
border-radius: 50%;
}
.our-team .title{
font-weight: 600;
color: #2e282a;
text-transform: uppercase;
display: block;
font-size: 20px;
margin: 0 0 7px 0;
}
.our-team .post{
color: #17bebb;
text-transform: capitalize;
display: block;
font-size: 15px;
margin-bottom: 15px;
}
.our-team .social{
padding: 0;
margin: 0;
list-style: none;
}
.our-team .social li{
display: inline-block;
margin-right: 5px;
}
.our-team .social li a{
border-radius: 50%;
font-size: 15px;
color: #17bebb;
border: 1px solid #17bebb;
display: block;
width: 30px;
height: 30px;
line-height: 30px;
transition: all 0.5s ease 0s;
}
.our-team:hover .social li a{
background: #17bebb;
color: #fff;
}
.our-team:hover .pic{
background: #17bebb;
border-radius: 50%;
}
.our-team:hover .social li a{
background: #17bebb;
color: #fff;
}