54 lines
866 B
CSS
54 lines
866 B
CSS
.h1 {
|
|
color: #0e6942;
|
|
text-transform: uppercase;
|
|
font-weight: bolder;
|
|
font-size: 50px;
|
|
padding-left: 1%;
|
|
}
|
|
|
|
.empty-message {
|
|
text-align: center;
|
|
font-size: 18px;
|
|
}
|
|
|
|
.header {
|
|
font-weight: bold !important;
|
|
background-color: #0e6942;
|
|
color: white;
|
|
padding: 10px;
|
|
}
|
|
|
|
.table thead th:first-child {
|
|
border-top-left-radius: 10px;
|
|
}
|
|
|
|
.table thead th:last-child {
|
|
border-top-right-radius: 10px;
|
|
}
|
|
|
|
.table tbody tr:nth-child(odd) {
|
|
background-color: white;
|
|
}
|
|
|
|
.table tbody tr:nth-child(even) {
|
|
background-color: #f6faf2;
|
|
}
|
|
|
|
.table td,
|
|
.table th {
|
|
border-bottom: 1px solid #0e6942;
|
|
border-top: 1px solid #0e6942;
|
|
}
|
|
|
|
.table {
|
|
width: 90%;
|
|
padding-top: 10px;
|
|
border-collapse: collapse;
|
|
}
|
|
|
|
@media screen and (max-width: 850px) {
|
|
.h1 {
|
|
text-align: center;
|
|
padding-left: 0;
|
|
}
|
|
}
|