75 lines
753 B
Plaintext
75 lines
753 B
Plaintext
html {
|
|
width: 98%;
|
|
height: 97%;
|
|
margin: 0;
|
|
padding: 0;
|
|
float: left;
|
|
}
|
|
|
|
body {
|
|
width: 100%;
|
|
height: 100%;
|
|
margin: 0;
|
|
padding: 0;
|
|
float: left;
|
|
background-color: #fff;
|
|
}
|
|
|
|
table {
|
|
width: 100%;
|
|
}
|
|
|
|
#title {
|
|
display: flex;
|
|
align-items: center;
|
|
margin-top: 0.5%;
|
|
margin-left: 0.5%;
|
|
}
|
|
|
|
#startTime,
|
|
#endTime {
|
|
width: 10%;
|
|
}
|
|
|
|
.statisticsTitle {
|
|
font-size: 18px;
|
|
font-weight: 600;
|
|
}
|
|
|
|
#num,
|
|
#successNum,
|
|
#errorNum {
|
|
font-size: 18px;
|
|
font-weight: 600;
|
|
}
|
|
|
|
#num {
|
|
color: #0000FF;
|
|
}
|
|
|
|
#successNum {
|
|
color: #00FF00;
|
|
}
|
|
|
|
#errorNum {
|
|
color: #FF0000;
|
|
}
|
|
|
|
#content {
|
|
width: 100%;
|
|
height: 90%;
|
|
margin-top: 2%;
|
|
text-align: center;
|
|
}
|
|
|
|
.title {}
|
|
|
|
#content .title {
|
|
font-size: 18px;
|
|
font-weight: 800;
|
|
}
|
|
|
|
#statisticalChart {
|
|
width: 100%;
|
|
height: 96%;
|
|
} |