-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfriends.css
99 lines (84 loc) · 1.46 KB
/
friends.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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
*{
padding: 0;
margin: 0;
}
#container{
align-items: flex-start;
}
#users{
background: white;
padding: 8px;
max-height: 85vh;
overflow: auto;
}
#loaderdiv{
display: flex;
align-items: center;
justify-content: center;
}
#userdetailasdev{
display: flex;
flex-direction: row;
align-items: center;
border: 2px solid #dfdfdf;
border-radius: 10px;
padding: 5px;
margin-bottom: 5px;
}
.userimg{
margin-right: 10px;
}
.userimg img{
width: 45px;
height: 45px;
border-radius: 50%;
}
#data{
width: 80%;
margin-left: 10px;
}
.username{
font-size: 16px;
margin-top: 10px;
margin-bottom: 0px;
}
.signupdate{
font-size: 15px;
margin-top: 10px;
margin-bottom: 0px;
}
#dropdown{
width: 10%;
height: 100%;
}
.dropdownbuttons{
cursor: pointer;
padding: 10px;
color: #3360f9;
}
#dropdownhide{
display: none;
}
#userprofilediv{
position: absolute;
background: white;
border: 2px solid #dfdfdf;
display: none;
flex-direction: column;
align-items: flex-start;
border-radius: 5px;
justify-content: space-between;
padding: 5px;
}
#usercoverimg{
margin-bottom: 8%;
max-height: 260px;
}
#userprofileimg{
border-radius: 50%;
position: absolute;
bottom: 25px;
left: 15px;
width: 150px;
height: 150px;
}