From d87c38682be45130dc538d95327fbf0b7d0a54b8 Mon Sep 17 00:00:00 2001 From: Eric Phillips Date: Tue, 19 Oct 2021 23:08:12 -0600 Subject: [PATCH] table style --- flaskfdx/static/style.css | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) diff --git a/flaskfdx/static/style.css b/flaskfdx/static/style.css index a45a73b..d0456da 100644 --- a/flaskfdx/static/style.css +++ b/flaskfdx/static/style.css @@ -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; +}