31 lines
452 B
Plaintext
31 lines
452 B
Plaintext
.table-title {
|
|
text-align: center;
|
|
font-size: 14px;
|
|
margin: 10px 0;
|
|
font-weight: bold;
|
|
}
|
|
|
|
.table-container {
|
|
border: 1px solid #ccc;
|
|
}
|
|
|
|
.table-header,.table-row {
|
|
display: flex;
|
|
justify-content: space-around;
|
|
align-items: center;
|
|
padding: 5px;
|
|
}
|
|
|
|
.cell {
|
|
flex: 1;
|
|
text-align: center;
|
|
border-right: 1px solid #ccc;
|
|
font-size: 12px;
|
|
}
|
|
|
|
.table-header.cell {
|
|
font-weight: bold;
|
|
background-color: #d9edf7;
|
|
font-size: 12px;
|
|
}
|