forked from Hari-Prabhat-Kushwaha/Ecomm-php
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathprofile.css
More file actions
50 lines (42 loc) · 666 Bytes
/
profile.css
File metadata and controls
50 lines (42 loc) · 666 Bytes
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
.profile{
display: flex;
}
.profileRight{
flex: 9;
}
.profileCover{
height: 320px;
position: relative;
}
.profileCoverImg{
width: 100%;
height: 250px;
object-fit: cover;
}
.profileUserImg{
width: 150px;
height: 150px;
border-radius: 50%;
object-fit: cover;
position: absolute;
left: 0;
right: 0;
margin: auto;
top: 150px;
border: 3px solid white;
}
.profileInfo{
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
}
.profileInfoName{
font-size: 24px;
}
.profileInfoDesc{
font-weight: 300;
}
.profileRightBottom{
display: flex;
}