-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathProfileCard.css
93 lines (80 loc) · 1.31 KB
/
ProfileCard.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
.profileOuter {
width: 275px;
height: 363px;
overflow: hidden;
background-color: #fff;
margin-left: auto;
margin-right: auto;
margin-top: 1rem;
margin-bottom: 1rem;
}
.profileWrapper {
border: 1px solid rgba(0, 0, 0, 0.125);
border-radius: 0.25rem;
width: 275px;
height: 363px;
margin-left: auto;
margin-right: auto;
margin-bottom: 1rem;
}
.body {
padding: 1.25rem;
}
.backgroundImg {
width: 275px;
height: 150px;
}
.profileImg {
width: 100px;
height: 100px;
max-width: 100px;
margin-top: -70px;
margin-bottom: 5px;
box-shadow: 0 1px 1px rgba(0, 0, 0, 0.1);
border-width: 3px;
border-color: #fff;
border-radius: 50px;
margin-left: auto;
margin-right: auto;
}
.nameWrapper {
margin-bottom: 5px;
}
.name {
font-size: 1rem;
font-weight: 700;
color: #212529;
text-align: center;
}
.descriptionWrapper {
margin-bottom: 1.5rem;
}
.description {
text-align: center;
color: #212529;
}
.stats {
flex: 1;
flex-direction: row;
flex-grow: 1;
margin-left: auto;
margin-right: auto;
margin-bottom: 2rem;
}
.statsLeft {
padding: 0 10px;
border-right-color: #d4dbe0;
border-right-width: 1px;
height: 38px;
}
.statsRight {
padding: 0 10px;
height: 38px;
}
.statsText {
text-align: center;
color: #212529;
}
.statsTextBold {
font-weight: bold;
}