-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
95 lines (82 loc) · 1.26 KB
/
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
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
body {
background-color: #19a2ae;
background-image: url("images/bg-pattern-top.svg");
justify-content: center;
align-items: center;
display: flex;
height: 100vh;
margin: 0;
}
.card-container {
width: 400px;
height: 400px;
background-color: white;
display: flex;
flex-direction: column;
border-radius: 20px;
overflow: hidden;
box-shadow: 1px 1px gray;
}
.card-banner {
flex: 1;
box-shadow: 1px 1px grey;
}
.card-info {
flex: 1;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
border-bottom: 1px solid rgb(212, 212, 212);
}
.card-stats {
flex: 0.7;
display: flex;
}
.categorie {
flex: 1;
display: flex;
justify-content: center;
align-items: center;
flex-direction: column;
}
.profile img {
border-radius: 50%;
width: 100px;
}
.profile {
margin-top: -80px;
}
.card-banner img {
width: 100%;
height: 100%;
}
.name,
.number,
.type,
.location,
.age {
font-family: "Kumbh Sans", sans-serif;
}
.type,
.location,
.age {
font-weight: 400;
font-size: small;
color: grey;
}
.number {
font-weight: 700;
font-size: 18px;
}
.location {
font-size: 17px;
padding-top: 15px;
}
.name,
.age {
display: flex;
flex-direction: row;
font-size: 25px;
padding-left: 8px;
}