| 12345678910111213141516171819202122232425262728293031323334353637383940 |
- *{
- margin: 0;
- padding: 0;
- list-style: none;
- text-decoration: none;
- cursor:pointer;
- }
- html,body{
- height: 100%;
- }
- a{
- display: block;
- height:100%;
- color:#000000;
- }
- a:visited{color:#000000;}
- //重写滚动条样式
- ::-webkit-scrollbar {
- width: 5px;
- height: 3px;
- background-color: rgba(0,0,0,.3);
- }
- /*定义滚动条轨道 内阴影+圆角*/
- ::-webkit-scrollbar-track {
- -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,.3);
- background: #fff ;
- }
- /*定义滑块 内阴影+圆角*/
- ::-webkit-scrollbar-thumb {
- border-radius: 3px;
- -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,.3);
- background-color:rgba(0,0,0,.3);
- }
- ::-webkit-scrollbar-thumb:hover {
- border-radius: 3px;
- -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,.3);
- // background-color:rgba(7, 170, 247, 1);
- // background-color:rgba(0,0,0,.4);
- }
|