-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
97 lines (83 loc) · 1.62 KB
/
styles.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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
body {
background: hsl(185, 75%, 39%);
background-image: url("images/bg-pattern-top.svg"),
url("images/bg-pattern-bottom.svg");
background-repeat: no-repeat;
/*background-position: right calc(47vw + 15%) bottom calc(65vh - 15vw),
left calc(40vw + 25%) top calc(72vh - 10vw); */
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
flex-wrap: wrap;
height: 100vh;
font-family: "Kumbh Sans", sans-serif;
font-weight: 400;
}
.card {
margin: auto;
background-color: white;
background-image: url(images/bg-pattern-card.svg);
background-repeat: no-repeat;
background-size: 100%;
min-width: 20rem;
height: 350px;
border-radius: 5%;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
overflow: hidden;
}
.card img {
border: 5px solid white;
border-radius: 50%;
}
.profilePic {
padding-top: 4rem;
}
.profile {
padding-top: 1rem;
padding-bottom: 1rem;
display: inline-block;
}
.stats {
text-align: center;
padding-top: 1.5rem;
display: flex;
align-items: end;
justify-content: space-evenly;
padding-bottom: 1rem;
width: 100%;
}
hr {
width: 100%;
border: 0.5px solid;
border-style: solid;
border-color: hsl(0, 0%, 87%);
}
/*TYPOGRAPHY*/
.name {
font-size: 18px;
font-weight: 700;
}
.profile {
text-align: center;
line-height: 1.5rem;
}
.profile .age {
color: hsl(0, 0%, 59%);
}
.profile .location {
color: hsl(0, 0%, 59%);
font-size: 0.85rem;
}
.number {
font-weight: 700;
}
.description {
color: hsl(0, 0%, 59%);
font-size: 0.7rem;
}
@media screen and (min-width: 1440px) {
}