-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
99 lines (93 loc) · 1.49 KB
/
styles.css
File metadata and controls
99 lines (93 loc) · 1.49 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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
@import url('https://fonts.googleapis.com/css2?family=Kumbh+Sans:wght@300;400&display=swap');
body{
position: static;
overflow: hidden;
padding:0;
margin: 0;
height: 100%;
width: 100%;
background-color: hsl(185, 75%, 39%);
font-family: 'Kumbh Sans',sans-serif;
}
.bg-pattern-top{
position: absolute;
margin: -40% 0 0 -10%;
}
.bg-pattern-bottom{
position: absolute;
right: 0;
bottom: 0;
margin: 0 -10% -40% 0;
}
.Card{
height: 400px;
width: 350px;
background-color: white;
position: relative;
margin: auto;
border-radius: 15px;
top: 200px;
background-image: url('images/bg-pattern-card.svg');
background-repeat: no-repeat;
}
.Profile-img{
display: block;
border-radius: 50%;
border:4px solid white;
position: relative;
margin: auto;
margin-bottom:0px;
}
.content{
position: relative;
margin: auto;
top: 90px;
}
.id{
display: flex;
font-size: 18px;
height:30px;
margin-bottom: 25px;
}
#age{
font-weight: 400;
color: hsl(0, 0%, 59%);
}
.id h2{
display: inline-block;
text-align: center;
}
.bottom{
position: absolute;
bottom: 20px;
width: 100%;
padding: 10px 5px;
display: flex;
padding:0 5px;
}
.bottom div{
display: inline-block;
width: 33%;
text-align: center;
}
.bottom h2{
margin-top: 0;
margin-bottom: 0;
font-weight: 700;
font-size: 18px;
display: inline-block;
}
.bottom p{
margin: 0;
margin-top: 5px;
font-size: 10px;
}
hr{
color: hsl(227, 10%, 46%);
top: 300px;
position: absolute;
display: block;
width: 100%;
outline: none;
background-color: red;
}