Skip to content

Commit bc6710d

Browse files
author
Adrian Preuß
committed
Adding scrollbar style
1 parent c077654 commit bc6710d

1 file changed

Lines changed: 41 additions & 0 deletions

File tree

Source/Assets/CSS/Scrollbar.css

Lines changed: 41 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,41 @@
1+
::-webkit-scrollbar {
2+
width: 2px;
3+
height: 2px;
4+
}
5+
6+
::-webkit-scrollbar-button {
7+
width: 0px;
8+
height: 0px;
9+
}
10+
11+
::-webkit-scrollbar-thumb {
12+
background: #e1e1e1;
13+
border: 0px none #ffffff;
14+
border-radius: 50px;
15+
}
16+
17+
::-webkit-scrollbar-thumb:hover {
18+
background: #ffffff;
19+
}
20+
21+
::-webkit-scrollbar-thumb:active {
22+
background: #000000;
23+
}
24+
25+
::-webkit-scrollbar-track {
26+
background: #666666;
27+
border: 0px none #ffffff;
28+
border-radius: 50px;
29+
}
30+
31+
::-webkit-scrollbar-track:hover {
32+
background: #666666;
33+
}
34+
35+
::-webkit-scrollbar-track:active {
36+
background: #333333;
37+
}
38+
39+
::-webkit-scrollbar-corner {
40+
background: transparent;
41+
}

0 commit comments

Comments
 (0)