From 6d58962e089f31405a2fe48b602088f00e7be434 Mon Sep 17 00:00:00 2001 From: Felipe Martin Date: Mon, 19 Dec 2016 09:53:48 +0100 Subject: [PATCH] Added styles for tables --- assets/static/sass/_table.sass | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 assets/static/sass/_table.sass diff --git a/assets/static/sass/_table.sass b/assets/static/sass/_table.sass new file mode 100644 index 0000000..712d72a --- /dev/null +++ b/assets/static/sass/_table.sass @@ -0,0 +1,18 @@ +table + margin: 0 0 40px 0 + width: 100% + box-shadow: 0 1px 3px rgba(0,0,0,0.2) + + th + background: #c93737 + color: white + font-weight: bold + + tr + background: #f6f6f6 + + &:nth-of-type(odd) + background: #e9e9e9 + + td, th + padding: 6px