-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
9d38fd7
commit 247dc53
Showing
2 changed files
with
28 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
/* Estilos personalizados para el scroller */ | ||
/* Estilo para el riel del scroller */ | ||
::-webkit-scrollbar { | ||
width: 20px; /* Ancho del scroller */ | ||
} | ||
|
||
/* Estilo para el riel del scroller en el eje vertical */ | ||
::-webkit-scrollbar-track { | ||
background-image: linear-gradient(to bottom, #ff7e5f 15%, #ff7f5f 16%, #31405f 30%, #31405f 83%, #000000 89%, #000000 97%); | ||
|
||
} | ||
|
||
/* Estilo para el botón (manija) del scroller */ | ||
::-webkit-scrollbar-thumb { | ||
box-shadow: 0 0 20px rgb(0, 0, 0); | ||
border: 1px solid black; | ||
background-color: #ffffff1f; | ||
border-radius: 20px; | ||
} | ||
|
||
/* Estilo para el botón del scroller cuando se mueve */ | ||
::-webkit-scrollbar-thumb:hover { | ||
cursor:all-scroll; | ||
background-color: #ffffff; /* Color del botón al pasar el ratón */ | ||
} | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters