-
Notifications
You must be signed in to change notification settings - Fork 1
/
style.css
60 lines (55 loc) · 956 Bytes
/
style.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
body {
font-family: Arial,Helvetica,sans-serif;
}
a:link {
color: #808BA0;
}
a:visited {
color: #808BA0;
}
@media print
{
.sidenav-print {
display: none !important;
width: 0px !important;
}
.main-print {
margin-left: 0px !important;
}
}
.sidenav {
width: 260px;
height: 100%;
position: fixed;
z-index: 1;
top: 0;
left: 0;
overflow: scroll;
background-color: #333;
color: #808BA0;
padding-top: 0px;
padding-left: 5px;
}
.main {
margin-left: 260px;
}
::-webkit-scrollbar {
-webkit-appearance:none;
width:12px;
height:12px;
}
::-webkit-scrollbar-thumb {
border-radius:12px;
border:4px solid rgba(255,255,255,0);
background-clip:content-box;
background-color: #A0A0A0;
}
::-webkit-scrollbar-thumb:hover {
border-radius:12px;
border:4px solid rgba(255,255,255,0);
background-clip:content-box;
background-color:#A0A0A0;
}
::-webkit-scrollbar-corner {
background-color: transparent;
}