You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

46 lines
706 B

.Tab {
overflow: hidden;
border: 1px solid #ccc;
background-color: #f1f1f1;
}
.Tab button {
background-color: inherit;
float: left;
border: none;
outline: none;
cursor: pointer;
padding: 14px 16px;
transition: 0.3s;
font-size: 17px;
}
.Tab button:hover {
background-color: #ddd;
}
.Tab button.active {
background-color: #ccc;
}
.TabLink {
}
.TabContent {
display: none;
padding: 6px 12px;
-webkit-animation: fadeEffect 1s;
animation: TabContentFadeEffect 1s;
}
@-webkit-keyframes TabContentFadeEffect {
from {opacity: 0;}
to {opacity: 1;}
}
@keyframes TabContentFadeEffect {
from {opacity: 0;}
to {opacity: 1;}
}