-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathteam.css
More file actions
73 lines (59 loc) · 1.26 KB
/
team.css
File metadata and controls
73 lines (59 loc) · 1.26 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
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans:wght@700&family=Poppins:wght@400;500;600&display=swap');
*{
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: "Poppins", sans-serif;
}
body{
display: flex;
justify-content: center;
align-items: center;
min-height: 100vh;
background: linear-gradient(#D5A3FF 0%, #77A5F8 100%);
}
.wrapper{
background: #fff;
width: 680px;
border-radius: 50px;
padding: 20px;
box-shadow: 12px 12px 16px 0 rgba(0, 0, 0, 0.25),
-8px -8px 12px 0 rgba(7, 0, 0, 0.3);
}
h2{
text-align: center;
}
hr{
width: 100px;
margin: 10px auto;
}
.members{
display: flex;
}
.team-mem{
margin: 8px;
background: #0a0000;
width: 200px;
border-radius: 50px;
padding: 10px;
box-shadow: 12px 12px 16px 0 rgb(255, 255, 255),
-8px -8px 12px 0 rgba(61, 58, 58, 0.3);
}
.team-mem :hover{
background: #fdfdfe;
opacity: .6;
transition: .8s;
}
img{
width: 100px;
height: 100px;
border-radius: 35%;
margin: 40px;
margin-left: 40px;
}
h4,p{
text-align: center;
font-size: 12px;
margin: 7px;
color: #fff;
}