You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 

35 lines
829 B

@charset "utf-8";
body {
font:14px/1.5 "Microsoft Yahei","微软雅黑",Tahoma,Arial,Helvetica,STHeiti;
}
.btn-primary{
background-color: #08c !important;
background-image: linear-gradient(to bottom,#08c,#08c);
}
.btn-primary:active{
background-color: #07c !important;
}
.btn-primary:hover{
background-color: #07c !important;
background-image: linear-gradient(to bottom,#07c,#07c);
}
/*定义滚动条高宽及背景 高宽分别对应横竖滚动条的尺寸*/
::-webkit-scrollbar
{
width: 7px;
height: 10px;
background-color: rgba(0, 0, 0, 0.1);
}
/*定义滑块 内阴影+圆角*/
::-webkit-scrollbar-thumb
{
background-color: rgba(0, 0, 0, 0.3);
-webkit-border-radius:6px;
-moz-border-radius: 6px;
-ms-border-radius: 6px;
-o-border-radius: 6px;
border-radius: 6px;
}