-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsidebar.css
121 lines (99 loc) · 1.86 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
121
.sidebar
{
position: fixed;
left: 0;
bottom: 0;
top: 58px;
width: 230px;
margin-top: 20px;
overflow-y: auto;
}
.sidebar::-webkit-scrollbar {
width: 8px;
background-color: #f1f1f1;
}
.sidebar::-webkit-scrollbar-thumb {
background-color: #888;
border-radius: 15px;
}
.sidebar::-webkit-scrollbar {
display: none;
}
.sidebar:hover::-webkit-scrollbar {
display: block;
}
.sidebar-link
{
height: 40px;
margin-bottom: 1px;
margin-left: 25px;
display: flex;
padding-top: 8px;
margin-right: 5px;
align-items: center;
}
.sidebar-link:hover
{
background-color: lightgrey;
border-radius: 9px;
}
.sidebar-link img
{
height: 25px;
}
.sidebar-link div
{
font-family: Roboto , Arial, Helvetica, sans-serif;
font-size: 14px;
margin-left: 25px;
}
.sidebar-first-div
{
border-bottom: 1px;
border-bottom-style: solid;
border-bottom-color: rgb(230, 230, 230);
margin-bottom: 20px;
}
.sidebar-second-div
{
border-bottom: 1px;
border-bottom-style: solid;
border-bottom-color: rgb(230, 230, 230);
margin-bottom: 20px;
}
.sidebar-third-div
{
border-bottom: 1px;
border-bottom-style: solid;
border-bottom-color: rgb(230, 230, 230);
margin-bottom: 20px;
}
.sidebar-fourth-div
{
border-bottom: 1px;
border-bottom-style: solid;
border-bottom-color: rgb(230, 230, 230);
margin-bottom: 20px;
}
.sidebar-fifth-div
{
border-bottom: 1px;
border-bottom-style: solid;
border-bottom-color: rgb(230, 230, 230);
margin-bottom: 20px;
}
.sidebar-final-text
{
width: 200px;
font-family: Roboto, Arial, Helvetica, sans-serif;
font-size: 13px;
line-height: 22px;
margin-left: 12px;
margin-bottom: 18px;
}
.sidebar-name-heading
{
font-family: Roboto, Arial, Helvetica, sans-serif;
font-size: 16px;
margin-left: 20px;
}