-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpractice.css
More file actions
76 lines (60 loc) · 1.08 KB
/
Copy pathpractice.css
File metadata and controls
76 lines (60 loc) · 1.08 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
*{
margin: 0;
padding: 0;
box-sizing: border-box;
}
body{
background: crimson;
font-family: 'Poppins', sans-serif;
}
.wrapper{
margin-top: 10%;
}
.wrapper h1{
font-family: 'Ubuntu', sans-serif;
font-size: 52px;
margin-bottom: 60px;
text-align: center;
}
.team{
display: flex;
justify-content: center;
width: auto;
text-align: center;
flex-wrap: wrap;
}
.team .team_member{
background:white;
margin: 5px;
margin-bottom: 50px;
width: 300px;
padding: 20px;
line-height: 20px;
color: #8e8b8b;
position: relative;
}
.team .team_member h3{
color: crimson;
font-size: 26px;
margin-top: 50px;
}
.team .team_member p.role{
color: #ccc;
margin: 12px 0;
font-size: 12px;
text-transform: uppercase;
}
.team .team_member .team_img{
position: absolute;
top: -50px;
left: 50%;
transform: translateX(-50%);
width: 100px;
height: 100px;
background: crimson;
}
.team .team_member .team_img img{
width: 100px;
height: 100px;
padding: 5px;
}