-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathprofile.css
60 lines (51 loc) · 1.02 KB
/
profile.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
#nav-space {
width: 100vw;
height: 70px;
background-color: black;
}
#cont {
display: flex;
max-width: 70%;
align-items: center;
flex-direction: column;
background-color: lightsteelblue;
margin-top: 15px;
box-shadow: 10px 10px 10px rgb(44 41 38 / 30%);
border-radius: 20px;
margin-bottom: 20px;
}
#profile-img {
margin-top: 50px;
height: 150px;
width: 150px;
border-radius: 50%;
background-color: blue;
}
#about {
width: 70%;
display: flex;
flex-direction: column;
}
#post-cont {
border-radius: 20px;
display: flex;
background-color: lightsteelblue;
flex-direction: column;
justify-content: center;
align-items: center
/* height: 500px; to be deleted later */
}
.post-cont{
max-width: 80%;
}
h3, h4 {
background-color: crimson;
display: inline;
background-color: mediumslateblue;
border-radius: 5px;
padding: 5px;
}
#profile-img {
background-image: url('profile.PNG');
background-size: cover;
}