cleaner look for tab-groups and tab-openers

This commit is contained in:
Felix Hamann 2018-05-16 23:30:39 +02:00
parent a17ba443ad
commit 3a38c36f91

View File

@ -1,5 +1,7 @@
.tab-group { .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; margin-top: 40px;
} }
@ -22,21 +24,18 @@
font-size: 16px; font-size: 16px;
text-transform: uppercase; text-transform: uppercase;
font-weight: 600; font-weight: 600;
transition: all .2s ease; transition: all .1s ease;
box-shadow: inset 0 -4px 4px rgba(0, 0, 0, 0.1); border-bottom: 5px solid rgba(100, 100, 100, 0.2);
border-top: 5px solid transparent;
} }
.tab-opener:not(.tab-visible):hover { .tab-opener:not(.tab-visible):hover {
cursor: pointer; cursor: pointer;
background-color: transparent; background-color: transparent;
color: rgb(52, 48, 58); color: rgb(52, 48, 58);
box-shadow: none; border-bottom-color: grey;
border-top-color: grey;
} }
.tab-opener.tab-visible { .tab-opener.tab-visible {
background-color: transparent; background-color: transparent;
color: rgb(52, 48, 58); color: rgb(52, 48, 58);
border-top-color: #5F98C2; border-bottom-color: #5F98C2;
box-shadow: none;
} }