Standard Tab
Preview
HTML
CSS

Copy
/* tabs-one */
.tabs-one {
    border: 1px solid var(--gray-4);
}

.tabs-one .nav {
    border-bottom: 1px solid var(--gray-4);
}

@media (max-width: 767px) {
    .tabs-one .nav {
        display: block;
    }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
    .tabs-one .nav {
        display: flex;
    }
}

.tabs-one .nav .nav-item a {
    font-size: 16px;
    line-height: 24px;
    color: var(--dark-3);
    font-weight: 700;
    padding: 13px;
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
    display: block;
}

    .tabs-one .nav .nav-item a.active {
        color: var(--white);
        background: var(--primary);
    }

.tabs-one .tab-content .tab-text {
    padding: 15px;
}

    .tabs-one .tab-content .tab-text .text {
        color: var(--dark-3);
    }
