-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy patheg.css
More file actions
61 lines (54 loc) · 1.02 KB
/
eg.css
File metadata and controls
61 lines (54 loc) · 1.02 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
p {
font-family: Arial;
margin-top: 0;
margin-bottom: 0;
}
.profile {
width: 200px;
box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
display: inline-block;
vertical-align: top;
margin-right: 15px;
}
.profile-picture {
width: 200px;
height: 200px;
object-fit: cover;
margin-bottom: 12px;
}
.name {
font-size: 18px;
font-weight: bold;
margin-left: 8px;
margin-bottom: 6px;
}
.mutual-friends-row {
margin-left: 8px;
margin-bottom: 10px;
}
.mutual-friend-picture {
height: 28px;
width: 28px;
object-fit: cover;
border-radius: 14px;
vertical-align: middle;
margin-right: 4px;
}
.mutual-friends {
display: inline-block;
vertical-align: middle;
color: rgb(100, 100, 100);
}
.add-friend-button {
background-color: rgb(24, 119, 242);
color: white;
border: none;
padding-top: 10px;
padding-bottom: 10px;
padding-left: 20px;
padding-right: 20px;
border-radius: 4px;
font-size: 16px;
margin-left: 8px;
margin-bottom: 10px;
}