Vous ne pouvez pas sélectionner plus de 25 sujets
Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.
|
- /* You can add global styles to this file, and also import other style files */
-
- /* 修改滚动条宽度、背景色和滑块颜色 */
- ::-webkit-scrollbar {
- width: 12px;
- }
-
- ::-webkit-scrollbar-track {
- background: #f1f1f1;
- }
-
- ::-webkit-scrollbar-thumb {
- background: #888;
- }
-
- /* 鼠标悬停时滚动条滑块颜色 */
- ::-webkit-scrollbar-thumb:hover {
- background: #555;
- }
|