47 lines
653 B
CSS
47 lines
653 B
CSS
.table-box {
|
|
width: 100%;
|
|
height: calc(100% - 280px);
|
|
}
|
|
|
|
.layout {
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
}
|
|
|
|
#data-overview {
|
|
width: 100%;
|
|
height: 80px;
|
|
justify-content: space-around;
|
|
}
|
|
|
|
#data-overview>div {
|
|
width: 15%;
|
|
height: 100%;
|
|
}
|
|
|
|
.data-detail {
|
|
flex-direction: column;
|
|
}
|
|
|
|
#data-overview p {
|
|
margin: 2px 0 2px 0;
|
|
letter-spacing: 1px;
|
|
}
|
|
|
|
.common-style {
|
|
width: 100%;
|
|
justify-content: space-between;
|
|
cursor: pointer;
|
|
}
|
|
|
|
.num-style {
|
|
font-size: 28px;
|
|
font-weight: bold;
|
|
color: #666;
|
|
}
|
|
|
|
.num-title {
|
|
flex-direction: column;
|
|
align-items: start;
|
|
} |