22 lines
423 B
CSS
22 lines
423 B
CSS
.custom-table {
|
|
border-collapse: collapse;
|
|
width: 100%;
|
|
}
|
|
|
|
.custom-table td, .custom-table th {
|
|
border: 1px solid #ddd;
|
|
padding: 8px;
|
|
}
|
|
|
|
/* .custom-table tr:nth-child(even){background-color: #f2f2f2;} */
|
|
|
|
/* .custom-table tr:hover {background-color: #fafafa;} */
|
|
|
|
.custom-table th {
|
|
padding-top: 12px;
|
|
padding-bottom: 12px;
|
|
text-align: left;
|
|
background-color: #FFDDD2;
|
|
color: #212529;
|
|
font-weight: 600;
|
|
} |