123456789101112131415161718192021222324252627 |
- .container-fluid {
- padding-right: 5px;
- padding-left: 5px;
- }
- #uiLayer{
- background-color:#fff;
- }
-
- ::-webkit-scrollbar {
- width: 6px;
- height: 6px;
- }
-
- ::-webkit-scrollbar-track {
- -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3);
- border-radius: 1px;
- background-color: #1D2331;
- }
-
- ::-webkit-scrollbar-thumb {
- border-radius: 10px;
- -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,.3);
- background-color: #5F6C88;
- }
|