From 3a38c36f914dc886185cff53a60825c6b0180254 Mon Sep 17 00:00:00 2001 From: Felix Hamann Date: Wed, 16 May 2018 23:30:39 +0200 Subject: [PATCH] cleaner look for tab-groups and tab-openers --- static/css/tabber.css | 15 +++++++-------- 1 file changed, 7 insertions(+), 8 deletions(-) diff --git a/static/css/tabber.css b/static/css/tabber.css index 8643ddbe3..f768f6f24 100644 --- a/static/css/tabber.css +++ b/static/css/tabber.css @@ -1,5 +1,7 @@ .tab-group { - box-shadow: 0 0 0 18px white, 0 0 0 20px #b3b7c1; + /* box-shadow: 0 0 0 18px white, 0 0 0 20px #b3b7c1; */ + border-top: 2px solid #dcdcdc; + padding-top: 30px; margin-top: 40px; } @@ -22,21 +24,18 @@ font-size: 16px; text-transform: uppercase; font-weight: 600; - transition: all .2s ease; - box-shadow: inset 0 -4px 4px rgba(0, 0, 0, 0.1); - border-top: 5px solid transparent; + transition: all .1s ease; + border-bottom: 5px solid rgba(100, 100, 100, 0.2); } .tab-opener:not(.tab-visible):hover { cursor: pointer; background-color: transparent; color: rgb(52, 48, 58); - box-shadow: none; - border-top-color: grey; + border-bottom-color: grey; } .tab-opener.tab-visible { background-color: transparent; color: rgb(52, 48, 58); - border-top-color: #5F98C2; - box-shadow: none; + border-bottom-color: #5F98C2; }