33 lines
567 B
CSS
33 lines
567 B
CSS
.normal_table {
|
|
width: 100%;
|
|
font-size: 14px;
|
|
}
|
|
|
|
.normal_table > thead > tr > th, .normal_table > tbody > tr > td {
|
|
border: 1px solid rgb(194, 194, 194);
|
|
vertical-align: middle;
|
|
padding: 8px;
|
|
text-align: center;
|
|
}
|
|
|
|
.normal_table > thead > tr > th {
|
|
border-top: 0;
|
|
background: rgb(230, 230, 230);
|
|
color: rgb(107, 107, 107);
|
|
}
|
|
|
|
.normal_table > tbody > tr > td {
|
|
border-bottom: 0;
|
|
}
|
|
|
|
.tableBottom {
|
|
border-bottom: 1px solid rgb(194, 194, 194);
|
|
}
|
|
|
|
.comment_td {
|
|
width: 50px;
|
|
}
|
|
|
|
form div.row > label {
|
|
cursor: default;
|
|
} |