Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
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
6 changes: 3 additions & 3 deletions style/helpers.scss
Original file line number Diff line number Diff line change
Expand Up @@ -54,13 +54,13 @@

// Keyframe animations
@mixin keyframes($animation-name) {
@-webkit-keyframes $animation-name {
@-webkit-keyframes #{$animation-name} {
@content;
}
@-moz-keyframes $animation-name {
@-moz-keyframes #{$animation-name} {
@content;
}
@keyframes $animation-name {
@keyframes #{$animation-name} {
@content;
}
}
Expand Down
22 changes: 22 additions & 0 deletions style/main.css
Original file line number Diff line number Diff line change
Expand Up @@ -756,3 +756,25 @@ hr {
margin-top: 90px !important; }
.game-message .lower {
margin-top: 30px !important; } }


/* Scroll effect for site experience replacing default scrollbar with site themed one*/

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

::-webkit-scrollbar-track {
background: #faf8f0; /* Darker background for a modern look */
border-radius: 10px;
}

::-webkit-scrollbar-thumb {
background: linear-gradient(45deg, #fdc595, #f2b076); /* Gradient for a premium look */
border-radius: 10px;
border: 1px solid #a39662; /* Adds spacing effect */
}

::-webkit-scrollbar-thumb:hover {
background: linear-gradient(45deg, #f2b076, #e89a5e); /* Subtle color change on hover */
}