-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
41 lines (41 loc) · 865 Bytes
/
style.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
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
background-color: hsl(185, 75%, 39%);
font-family: "Kumbh Sans", sans-serif;
text-align: center;
height: 100vh;
display: flex;
justify-content: center;
align-items: center;
background-image: url(images/bg-pattern-top.svg),
url(images/bg-pattern-bottom.svg);
background-position: -350px -500px, 650px 350px;
background-repeat: no-repeat, no-repeat;
}
.profile-card {
width: 350px;
background-color: #fff;
display: flex;
flex-direction: column;
align-items: center;
gap: 20px;
border-radius: 10px;
overflow: hidden;
}
.stats {
align-self: stretch;
display: flex;
justify-content: space-around;
border-top: 1px solid black;
padding: 30px;
}
.img-person {
width: 100px;
border-radius: 100%;
border: 5px solid #fff;
margin-top: -70px;
}