12345678910111213141516171819202122232425262728293031323334353637383940414243 |
- $darkBlue: #3475c5;
- $ashen: #fefefe;
- $backColor: #eef3f6;
- $black: #000;
- $fontBlack: #333;
- $fontGray: #999;
- $modena: #6f4afe;
- .text-gray {
- color: $fontGray;
- }
- .text-black {
- color: $fontBlack;
- }
- .back-dark {
- background-color: $darkBlue;
- }
- // 设置滚动条样式
- .scroll-bar::-webkit-scrollbar {
- width: 4px;
- height: 10px;
- }
- .scroll-bar::-webkit-scrollbar-thumb {
- background: linear-gradient(to bottom right, #075985 0%, #075985 100%);
- border-radius: 5px;
- }
- .scroll-bar::-webkit-scrollbar-track {
- background-color: none;
- border: 1px solid none;
- }
- .scroll-bar::-webkit-scrollbar-button {
- background-color: #075985;
- border-radius: 2px;
- height: 4px;
- }
- .scroll-bar::-webkit-scrollbar-button:hover {
- background-color: #999999;
- }
|