* {
|
padding: 0;
|
margin: 0;
|
}
|
|
html {
|
height: 100%;
|
width: 100%;
|
}
|
|
body {
|
height: 100%;
|
width: 100%;
|
background-color: black;
|
overflow: hidden;
|
font-family: Helvetica Neue, Helvetica, PingFang SC, Tahoma, Arial, sans-serif;
|
}
|
|
|
|
|
.border {
|
margin: 6px;
|
height: calc(100% - 14px );
|
width: calc(100% - 14px );
|
border: solid 1px #4075B4;
|
}
|
|
.content {
|
height: 100%;
|
width: 100%;
|
}
|
|
.header {
|
height: 12%;
|
width: 100%;
|
border-bottom: solid 2px #032D53;
|
}
|
|
|
.tcenter {
|
height: 88%;
|
width: 100%;
|
}
|
|
#container {
|
position:relative;
|
height: 99%;
|
width: 100%;
|
}
|
|
|
#dataTable {
|
height: 99%;
|
width: 100%;
|
display: none;
|
}
|
|
#dataTable table {
|
width: 98%;
|
color: white;
|
font-weight: 600;
|
text-align: center;
|
border-collapse: collapse;
|
border: solid 1px #ffffff;
|
}
|
|
table tr {
|
height: 50px;
|
}
|
|
table td {
|
border-collapse: collapse;
|
border: solid 1px #ffffff;
|
font-size: 12px;
|
}
|
|
td:first-child {
|
width: 30%;
|
}
|
|
.header button {
|
height: calc(100% - 2px);
|
width: 48%;
|
border: none;
|
color: #ffffff;
|
margin: 2px 0px 0px 2px;
|
font-size: 15px;
|
}
|
|
.chartBtn {
|
background-color: #033D73;
|
}
|
|
.dataBtn {
|
background-color: #000000;
|
}
|
|
|
|
|
.FourBorder {
|
position: absolute;
|
margin: -2px;
|
height: calc(100% - 10px );
|
width: calc(100% - 10px );
|
z-index: -1;
|
}
|
|
.topleft {
|
position: absolute;
|
left: 0;
|
top: 0;
|
height: 20px;
|
width: 20px;
|
border-top: solid 2px #0EFCFF;
|
border-left: solid 2px #0EFCFF;
|
}
|
|
.topright {
|
position: absolute;
|
right: 0;
|
top: 0;
|
height: 20px;
|
width: 20px;
|
border-top: solid 2px #0EFCFF;
|
border-right: solid 2px #0EFCFF;
|
}
|
|
.bottomleft {
|
position: absolute;
|
left: 0;
|
bottom: 0;
|
height: 20px;
|
width: 20px;
|
border-bottom: solid 2px #0EFCFF;
|
border-left: solid 2px #0EFCFF;
|
}
|
|
.bottomright {
|
position: absolute;
|
right: 0;
|
bottom: 0;
|
height: 20px;
|
width: 20px;
|
border-bottom: solid 2px #0EFCFF;
|
border-right: solid 2px #0EFCFF;
|
}
|