1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
| html,
| body,
| #app,
| .home {
| margin: 0;
| padding: 0;
| height: 100%;
| width: 100%;
| overflow: hidden;
| }
|
| /*定义滚动条高宽及背景 高宽分别对应横竖滚动条的尺寸*/
| ::-webkit-scrollbar
| {
| width: 6px;
| height: 16px;
| background-color: rgba(0,0,0,0);
| }
|
| /*定义滚动条轨道 内阴影+圆角*/
| ::-webkit-scrollbar-track
| {
| -webkit-box-shadow: inset 0 0 6px rgba(212,255,255,1.00);
| border-radius: 10px;
| background-color: #F5F5F5;
| }
|
| /*定义滑块 内阴影+圆角*/
| ::-webkit-scrollbar-thumb
| {
| border-radius: 10px;
| -webkit-box-shadow: inset 0 0 6px rgba(212,255,255,1.00);
| background-color: #437A74;
| }
|
|