table style

This commit is contained in:
2021-10-19 23:08:12 -06:00
parent a1c134973f
commit d87c38682b
+18
View File
@@ -24,3 +24,21 @@ nav ul li a, nav ul li span, header .action { display: block; padding: 0.5rem; }
.content textarea { min-height: 12em; resize: vertical; }
input.danger { color: #cc2f2e; }
input[type=submit] { align-self: start; min-width: 10em; }
.table {
border: 1px solid #dddddd;
border-collapse: collapse;
box-shadow: 0 0 20px rgba(0, 0, 0, 0.15);
}
.table thead tr {
background-color: #009879;
color: #ffffff;
text-align: left;
border-bottom: 1px solid #dddddd;
}
.table th,
.table td {
padding: 12px 15px;
}
.table tbody tr:nth-of-type(even) {
background-color: #f3f3f3;
}