scrollbar style
This commit is contained in:
parent
b4e2cd779c
commit
12cb99616b
2 changed files with 22 additions and 1 deletions
|
|
@ -83,7 +83,7 @@
|
|||
</html>
|
||||
|
||||
<!-- Instantly load test file (Debugging script) -->
|
||||
<script src="loadJson.js"></script>
|
||||
<!-- <script src="loadJson.js"></script> -->
|
||||
|
||||
<!-- Main script -->
|
||||
<script src="HKCheckCompletion.js"></script>
|
||||
|
|
|
|||
21
style.css
21
style.css
|
|
@ -34,6 +34,27 @@ body {
|
|||
margin: 0;
|
||||
}
|
||||
|
||||
body::-webkit-scrollbar {
|
||||
width: 8px;
|
||||
height: 8px;
|
||||
}
|
||||
|
||||
body::-webkit-scrollbar-track {
|
||||
background-color: #040813;
|
||||
}
|
||||
|
||||
body::-webkit-scrollbar-track-piece {
|
||||
background-color: #040813;
|
||||
}
|
||||
|
||||
body::-webkit-scrollbar-thumb {
|
||||
background-color: #1e4d6c;
|
||||
}
|
||||
|
||||
body::-webkit-scrollbar-thumb:hover {
|
||||
background-color: #2e5d7c;
|
||||
}
|
||||
|
||||
#background {
|
||||
position: fixed;
|
||||
padding: 0;
|
||||
|
|
|
|||
Loading…
Reference in a new issue