-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathSidebar.css
120 lines (104 loc) · 2.24 KB
/
Sidebar.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
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
.sidebar {
position: sticky;
top: 80px;
flex: 0.2;
border-radius: 10px;
text-align: center;
height: fit-content;
}
.sidebar__avatar {
margin-bottom: 10px;
}
.sidebar__top {
display: flex;
height: 150px;
width: 262px;
flex-direction: column;
align-items: center;
border: 1px solid lightgray;
border-bottom: 0;
border-top-left-radius: 10px;
border-top-right-radius: 10px;
background-color: white;
padding-bottom: 10px;
}
.sidebar__top > img {
margin-bottom: -20px;
width: 100%;
height: 65px;
border-top-left-radius: 10px;
border-top-right-radius: 10px;
object-fit: cover;
}
.sidebar__top > h4 {
color: gray;
font-size: 12px;
}
.sidebar__top > h2 {
font-size: 18px;
}
.sidebar__stats {
/* margin-top: 10px;
display: flex;
justify-content: space-between; */
padding: 10px;
margin-bottom: 10px;
border: 1px solid lightgray;
background-color: #fff;
border-top-left-radius: 10px;
border-top-right-radius: 10px;
}
.sidebar__stat {
margin-top: 10px;
display: flex;
justify-content: space-between;
}
.sidebar__stat > p {
color: gray;
font-size: 13px;
font-weight: 600;
}
.sidebar__statNumber {
font-weight: bold;
color: #0a66c2 !important;
}
/* .sidebar__stats {
padding: 10px;
margin-bottom: 10px;
border: 10px solid lightgray;
background-color: white;
border-bottom-left-radius: 10px;
border-bottom-right-radius: 10px;
} */
.sidebar__bottom {
text-align: left;
padding: 10px;
border: 1px solid lightgray;
background-color: white;
border-radius: 10px;
margin-top: 10px;
}
.sidebar__bottom > p {
font-size: 13px;
padding-bottom: 10px;
}
.sidebar__recentItem {
display: flex;
font-size: 13px;
color: gray;
font-weight: bolder;
cursor: pointer;
margin-bottom: 5px;
padding: 5px;
}
.sidebar__recentItem:hover {
background-color: whitesmoke;
border-radius: 10px;
cursor: pointer;
color: black;
}
.sidebar__hash {
margin-right: 10px;
margin-left:10px;
/* margin: 0 10px 0 5px; */
}