79 lines
1.1 KiB
Plaintext
79 lines
1.1 KiB
Plaintext
html,
|
|
body {
|
|
width: 100%;
|
|
height: 100%;
|
|
margin: 0;
|
|
padding: 0;
|
|
background-size: 100% 100%;
|
|
}
|
|
|
|
#content {
|
|
width: 100%;
|
|
height: 100%;
|
|
}
|
|
#null{
|
|
width: 100%;
|
|
height: 3%;
|
|
}
|
|
#titleDiv{
|
|
width: 100%;
|
|
height: 5%;
|
|
}
|
|
#titleDiv p{
|
|
margin-left: 10%;
|
|
font-size: 20px;
|
|
}
|
|
#UAVDiv{
|
|
width: 100%;
|
|
height: 88%;
|
|
}
|
|
.layui-form-label {
|
|
float: left;
|
|
display: block;
|
|
padding: 9px 15px;
|
|
width: 130px !important;
|
|
font-weight: 400;
|
|
line-height: 20px;
|
|
text-align: right;
|
|
font-size: 16px;
|
|
}
|
|
|
|
.layui-input,
|
|
.layui-textarea {
|
|
display: block;
|
|
width: 100%;
|
|
padding-left: 10px;
|
|
border: 1px solid #a9a9a9;
|
|
height: 32px;
|
|
}
|
|
/* chrome下的滚动条样式 */
|
|
|
|
::-webkit-scrollbar {
|
|
width: 0.1px;
|
|
height: 0.1px;
|
|
}
|
|
|
|
|
|
/* 滚动槽 */
|
|
|
|
::-webkit-scrollbar-track {
|
|
-webkit-box-shadow: inset 0 0 5px white;
|
|
border-radius: 5px;
|
|
}
|
|
|
|
|
|
/* 滚动条滑块 */
|
|
|
|
::-webkit-scrollbar-thumb {
|
|
border-radius: 10px;
|
|
background: white;
|
|
-webkit-box-shadow: inset 0 0 6px white;
|
|
}
|
|
|
|
::-webkit-scrollbar-thumb:window-inactive {
|
|
background: white;
|
|
}
|
|
|
|
::-webkit-scrollbar-corner {
|
|
background-color: white; // 颜色
|
|
} |