28 lines
No EOL
746 B
CSS
28 lines
No EOL
746 B
CSS
.tab.active {
|
|
border: 2px solid #f4dbd6 !important;
|
|
color: #f4dbd6 !important;
|
|
}
|
|
.tab.active:hover {
|
|
border: 2px solid #f4dbd6 !important;
|
|
background-color: #363a4f !important;
|
|
}
|
|
.tab{
|
|
font-weight: 700 !important;
|
|
border-radius: 20px !important;
|
|
margin: 2px !important;
|
|
padding-bottom: 2px !important;
|
|
height: 40px !important;
|
|
border:2px solid #1e2030 !important;
|
|
background-color: #1e2030 !important;
|
|
transition-property: all;
|
|
transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
|
|
transition-duration: 150ms;
|
|
}
|
|
.tab:hover {
|
|
border:2px solid #363a4f !important;
|
|
background-color: #363a4f !important;
|
|
}
|
|
.tabs-container{
|
|
height: auto !important;
|
|
padding: 5px !important;
|
|
} |