init commit

This commit is contained in:
zhouyuejun
2018-10-26 11:33:25 +08:00
commit bec3bb9137
106 changed files with 29628 additions and 0 deletions
+37
View File
@@ -0,0 +1,37 @@
/*页面统一样式*/
html,
body {
width: 100%;
height: 100%;
font-size: 14px !important;
overflow: hidden;
font-family: "Roboto", sans-serif !important;
background-color: #1190d6 !important;
}
/*添加手形*/
a[href],
input[type="submit"],
input[type="image"],
label[for],
select,
button,
.c-pointer {
cursor: pointer;
}
/*整体部分*/
::-webkit-scrollbar {
width: 10px;
height: 10px;
}
/*滑动轨道*/
::-webkit-scrollbar-track {
background: rgba(0, 0, 0, 0.06);
}
/*滑块*/
::-webkit-scrollbar-thumb {
background: rgba(0, 0, 0, 0.08);
&:hover {
background: rgba(0, 0, 0, 0.15);
}
}