-
Notifications
You must be signed in to change notification settings - Fork 0
/
profile.css
77 lines (66 loc) · 1.19 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
header {
display:flex;
width: 1000px;
height:150px;
margin: 150px auto;
}
#likelionBtn {
border: none;
border-radius: 70%;
overflow: hidden;
margin-top: 100px;
}
.userPhoto {
border-radius: 70%;
object-fit: cover;
}
.userInfo {
display:flex;
flex-direction: column;
padding-left: 350px;
}
.userName {
display: flex;
font-size: 20px;
font-weight: bolder;
}
#editProfileBtn {
background-color: rgb(236, 236, 236);
width: auto;
height: 35px;
margin-left: 30px;
margin-top: 50px;
padding: 10px 40px 30px;
font-size: 15px;
font-weight: bold;
border: 2px solid lightgray;
border-radius: 5px;
}
.profileInfo ul li {
display: inline-block;
padding: 20px;
font-size: 20px;
font-weight: normal;
}
.profileContents {
font-size: 25px;
font-weight: bolder;
}
main {
width: 300px;
height: 300px;
margin: 200px auto 0px auto;
display:flex;
flex-direction: row;
justify-content: center;
}
main ul {
display: none;
}
.photoPosting:hover {
filter: opacity(0.8) drop-shadow(0 0 0 rgb(0, 0, 0));
}
.photoPosting:hover ul {
display: flex;
align-items: center;
}