From fde453cbfd9e06cc7611b89af4181c6a6dc7b88c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fr=C3=A9d=C3=A9ric=20P=C3=A9ters?= Date: Sun, 19 Aug 2018 15:45:21 +0200 Subject: [PATCH] style tables --- gadjo/static/css/gadjo.scss | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/gadjo/static/css/gadjo.scss b/gadjo/static/css/gadjo.scss index 0f635f1..511c7a4 100644 --- a/gadjo/static/css/gadjo.scss +++ b/gadjo/static/css/gadjo.scss @@ -489,21 +489,21 @@ div#content h2 { table.main { width: 100%; background: white; - border: 1px solid #bcbcbc; + border: 1px solid #f3f3f3; border-collapse: collapse; } table.main th { font-weight: normal; padding: 1em 1ex; - border-bottom: 1px solid #bcbcbc; - background: #f0f0f0; + border-bottom: 1px solid #f3f3f3; + background: #f7f7f7; } table.main td { text-align: center; padding: 1em 1ex; - border-bottom: 1px solid #bcbcbc; + border-bottom: 1px solid #f3f3f3; @include vendor-prefix('transition', 'background ease 0.2s'); } @@ -512,11 +512,11 @@ table.main tr td.checkbox { } table.main tr:nth-child(even) td { - background: #f8f8f8; + background: #fdfdfd; } table.main tr:hover td { - background: #eee; + background: #dde; cursor: pointer; }