Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

✔️Implemented Custom Vertical scrollbar in DotBox #760

Merged
merged 7 commits into from
Aug 10, 2024
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Added CustomScrollbar in Licensing
aslams2020 committed Aug 10, 2024
commit 43dcd51847413acd9873754a975bc5dd48e3eb83
29 changes: 29 additions & 0 deletions pages/licensing.html
Original file line number Diff line number Diff line change
@@ -25,6 +25,35 @@
#last-updated-date {
font-size: 15px;
}


::-webkit-scrollbar {
width: 14px;
}

::-webkit-scrollbar-track {
background: linear-gradient(180deg, #d5d5ff, #9d9dff); /* Background color */
border-radius: 10px;
}

::-webkit-scrollbar-thumb {
background: linear-gradient(180deg, #8000ff, #ffcc00, #0066ff);
border-radius: 10px;
border: 1px solid #ccccf7;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

::-webkit-scrollbar-thumb:hover {
background: linear-gradient(180deg, #7e14e9, #f8d420, #3388ff);
box-shadow: 0 0 15px rgba(0, 0, 0, 0.7);
}

::-webkit-scrollbar-thumb:active {
background: linear-gradient(180deg, #6600cc, #ffbb00, #0044cc); /* Darker gradient on active */
box-shadow: 0 0 20px rgba(0, 0, 0, 0.9); /* Intense glow effect */
}



</style>
</head>