Skip to content

Commit

Permalink
Update style.css
Browse files Browse the repository at this point in the history
  • Loading branch information
dimensionscape authored Aug 31, 2024
1 parent c2a406b commit f89ea3c
Showing 1 changed file with 32 additions and 0 deletions.
32 changes: 32 additions & 0 deletions style.css
Original file line number Diff line number Diff line change
Expand Up @@ -206,3 +206,35 @@ footer p {
text-shadow: -2px 2px 20px rgba(255, 0, 128, 1), 2px -2px 20px rgba(0, 255, 157, 1);
}
}

/* Customize Scrollbars */
::-webkit-scrollbar {
width: 12px;
height: 12px;
}

::-webkit-scrollbar-track {
background: #0d0d0d;
}

::-webkit-scrollbar-thumb {
background-color: #00ff9d;
border-radius: 6px;
border: 3px solid #0d0d0d;
}

::-webkit-scrollbar-thumb:hover {
background-color: #ff0080;
}

/* Firefox */
* {
scrollbar-width: thin;
scrollbar-color: #00ff9d #0d0d0d;
}

/* Internet Explorer */
body {
scrollbar-face-color: #00ff9d;
scrollbar-track-color: #0d0d0d;
}

0 comments on commit f89ea3c

Please sign in to comment.