tfp
Version:
A Web UI framework for TaskBuilder
69 lines (59 loc) • 1.25 kB
CSS
* {
-webkit-font-smoothing: antialiased;
font-family: "ff-tisa-web-pro-1","ff-tisa-web-pro-2","Lucida Grande","Hiragino Sans GB","Hiragino Sans GB W3","Microsoft YaHei";
font-size: 14px;
box-sizing: border-box;
}
::-webkit-scrollbar {
/*滚动条整体样式*/
width: 6px;
/*高宽分别对应横竖滚动条的尺寸*/
height: 6px;
}
::-webkit-scrollbar-thumb {
/*滚动条里面小方块*/
-webkit-box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.2);
background: #666666;
border-radius: 2px;
}
::-webkit-scrollbar-track {
/*滚动条里面轨道*/
-webkit-box-shadow: inset 0 0 5px rgba(0,0,0,0.2);
background: #444;
}
::-webkit-scrollbar-corner {
background: #444;
}
A:link {
color: #003399;
TEXT-DECORATION: none
}
A:visited {
COLOR: #003399;
TEXT-DECORATION: none
}
A:hover {
COLOR: #003399;
text-decoration: underline;
}
A:active {
COLOR: #003399;
text-decoration: underline;
}
body {
margin: 0;
padding: 0;
background-color: #333333;
}
input[type=text],
input[type=password],
input[type=number],
select,
div.tfp-select,
textarea {
cursor: default;
outline: 0;
}
input[readonly] {
background-color: #333333;
}