-
Notifications
You must be signed in to change notification settings - Fork 0
/
stylee.css
67 lines (67 loc) · 1 KB
/
stylee.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
body{
margin: 0;
padding: 0;
font-family: "montserrat";
}
.team-section{
background: #f1f1f1;
text-align: center;
}
.inner-width{
max-width: 1200px;
margin: auto;
padding: 40px;
color: #333;
overflow: hidden;
}
.team-section h1{
font-size: 20px;
text-transform: uppercase;
display: inline-block;
border-bottom: 4px solid;
padding-bottom: 10px;
}
.pe{
float: left;
width: calc(100% / 3);
overflow: hidden;
padding: 40px 0;
transition: 0.4s;
}
.pe:hover{
background: #ddd;
}
.pe img{
width: 120px;
height: 120px;
}
.p-name{
margin: 16px 0;
text-transform: uppercase;
}
.p-des{
font-style: italic;
color: #3498db;
}
.p-sm{
margin-top: 12px;
}
.p-sm a{
margin: 0 4px;
display: inline-block;
width: 30px;
height: 30px;
transition: 0.4s;
}
.p-sm a:hover{
transform: scale(1.3);
}
.p-sm a i{
color: #333;
line-height: 30px;
}
@media screen and (max-width:600px) {
.pe{
width: 100%;
}
}