25 lines
268 B
CSS
25 lines
268 B
CSS
|
|
thead {
|
|
color: rgb(19, 58, 19);
|
|
}
|
|
tbody {
|
|
color: blue;
|
|
}
|
|
|
|
tfoot {
|
|
color: red;
|
|
}
|
|
|
|
table,
|
|
thead th,
|
|
tbody td {
|
|
border: 1px solid white;
|
|
border-collapse:collapse;
|
|
}
|
|
|
|
thead th,
|
|
tbody td {
|
|
background-color: rgb(220, 224, 228);
|
|
padding: 0.25rem 0.5rem;
|
|
}
|