-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathinfo.css
More file actions
48 lines (44 loc) · 827 Bytes
/
info.css
File metadata and controls
48 lines (44 loc) · 827 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
.img-area{
margin-right: auto;
margin-left: auto;
height: 180px;
width: 180px;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
position: relative;
margin-top: 10px;
margin-bottom: 10px;
}
.inner-area{
height: calc(100% - 25px);
width: calc(100% - 25px);
border-radius: 50%;
}
.inner-area img{
align-items: center;
justify-content: center;
height: 100%;
width: 100%;
border-radius: 50%;
object-fit: cover;
}
.details{
border-top: 1px solid #e6e6e6;
text-align: center;
padding-top: 30px;
}
.users-list{
min-height: 450px;
}
hr {
border: 0;
height: 1px;
margin-top: 10px;
margin-bottom: 10px;
background-image: linear-gradient(to right, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0));
}
p{
margin-bottom: 10px;
}