-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.css
More file actions
93 lines (90 loc) · 1.81 KB
/
index.css
File metadata and controls
93 lines (90 loc) · 1.81 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
html,
body {
font-family: "Kumbh Sans", sans-serif;
/* background-image: url(./images/bg-pattern-bottom.svg), url(./images/bg-pattern-card.svg), url(./images/bg-pattern-top.svg), url(./images/bg-pattern-bottom.svg);
*/
background-repeat: no-repeat;
background-color: hsl(185, 75%, 39%);
}
.bg {
background-image: url(./images/bg-pattern-card.svg);
background-repeat: no-repeat;
background-size: 100%;
border-top-right-radius: 10px;
border-top-left-radius: 10px;
}
.contents {
background-color: white;
margin-top: 150px;
margin-left: 520px;
width: 30%;
height: 450px;
border-radius: 10px;
}
.image {
border-radius: 50px;
margin-left: 40%;
margin-top: 10px;
margin-bottom: 10px;
}
.nameage {
display: flex;
flex-direction: row;
align-items: center;
justify-content: center;
margin-bottom: 0;
}
.name {
margin-right: 10px;
}
.age {
color: hsl(0, 0%, 59%);
font-size: 25px;
}
.location {
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
color: hsl(0, 0%, 59%);
margin-top: 0;
margin-bottom: 30px;
font-size: 19px;
}
.grid {
display: grid;
grid-template-columns: 1fr 1fr;
justify-content: center;
align-items: center;
justify-items: center;
}
.followers,
.likes {
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
}
#btnf {
border: none;
outline: none;
background-color: hsl(185, 75%, 39%);
color: white;
border-radius: 5px;
padding: 7px;
}
#btnl {
border: none;
outline: none;
background-color: hsl(185, 75%, 39%);
color: white;
border-radius: 5px;
padding: 7px;
width: 50px;
}
#attribution {
color: white;
margin: 20px;
font-size: 19px;
margin-left: 500px;
}