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 {
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;
}