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.
71 lines
2.3 KiB
71 lines
2.3 KiB
html { |
|
height: 100%; |
|
overflow: hidden; |
|
} |
|
body { |
|
position: absolute; |
|
width: 100%; |
|
height: 100%; |
|
margin: 0; |
|
padding: 0; |
|
top: 0; |
|
left: 0; |
|
background-repeat: repeat; |
|
-webkit-user-select: none; |
|
-khtml-user-select: none; |
|
-moz-user-select: none; |
|
-ms-user-select: none; |
|
-o-user-select: none; |
|
user-select: none; |
|
color: #3d4d66; |
|
font: normal 12px "Helvetica Neue", Arial, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", "微软雅黑", Heiti, "黑体", sans-serif; |
|
-webkit-font-smoothing: antialiased; |
|
-moz-osx-font-smoothing: grayscale; |
|
text-decoration: none; |
|
-kthml-user-focus: normal; |
|
-moz-user-focus: normal; |
|
-moz-outline: 0 none; |
|
outline: 0 none; |
|
} |
|
div::-webkit-scrollbar, |
|
textarea::-webkit-scrollbar { |
|
-webkit-appearance: none; |
|
background-color: rgba(32, 38, 59, 0.05); |
|
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#0d20263b,endColorstr=#0d20263b); |
|
width: 6px; |
|
height: 6px; |
|
} |
|
div::-webkit-scrollbar-thumb, |
|
textarea::-webkit-scrollbar-thumb { |
|
-webkit-border-radius: 0; |
|
-moz-border-radius: 0; |
|
border-radius: 0; |
|
background-color: rgba(32, 38, 59, 0.3); |
|
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#4d20263b,endColorstr=#4d20263b); |
|
} |
|
div::-webkit-scrollbar-thumb:hover, |
|
textarea::-webkit-scrollbar-thumb:hover { |
|
background-color: rgba(32, 38, 59, 0.7); |
|
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#b320263b,endColorstr=#b320263b); |
|
} |
|
.bi-theme-dark div::-webkit-scrollbar, |
|
.bi-theme-dark textarea::-webkit-scrollbar { |
|
-webkit-appearance: none; |
|
background-color: rgba(255, 255, 255, 0.05); |
|
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#0dffffff,endColorstr=#0dffffff); |
|
width: 6px; |
|
height: 6px; |
|
} |
|
.bi-theme-dark div::-webkit-scrollbar-thumb, |
|
.bi-theme-dark textarea::-webkit-scrollbar-thumb { |
|
-webkit-border-radius: 0; |
|
-moz-border-radius: 0; |
|
border-radius: 0; |
|
background-color: rgba(255, 255, 255, 0.3); |
|
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#4dffffff,endColorstr=#4dffffff); |
|
} |
|
.bi-theme-dark div::-webkit-scrollbar-thumb:hover, |
|
.bi-theme-dark textarea::-webkit-scrollbar-thumb:hover { |
|
background-color: rgba(255, 255, 255, 0.7); |
|
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#b3ffffff,endColorstr=#b3ffffff); |
|
}
|
|
|