Newer
Older
operation_web / src / assets / css / common.css
@zhangqy zhangqy on 28 Nov 2019 632 bytes tijiao
*{
    padding: 0;
    margin: 0;
    list-style: none;
    text-decoration: none;
}
a{
  text-decoration: none;
}
/*滚动条样式*/
::-webkit-scrollbar {
    /*滚动条整体样式*/
    width: 3px;
    /*高宽分别对应横竖滚动条的尺寸*/
    height: 13px;
  }
  
  ::-webkit-scrollbar-thumb {
    /*滚动条里面小方块*/
    border-radius: 5px;
    -webkit-box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.2);
    background: aqua;
  }
  
  ::-webkit-scrollbar-track {
    /*滚动条里面轨道*/
    -webkit-box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.2);
    border-radius: 0;
    background: rgba(0, 0, 0, 0.1);
  }