Proyectos de Subversion Moodle

Rev

Autoría | Ultima modificación | Ver Log |

.secondary-navigation {
    max-width: 100%;
    margin: 0 auto;

    #page-site-index & {
        @include media-breakpoint-up(md) {
        position: fixed;
        z-index: $zindex-fixed;
        left: calc(50% - 300px);
        top: $navbar-height + 20px;
        width: 600px;
        }
    }

    &+.rui-course-header {
        margin-top: 20px;
    }

    .navigation {
        .nav-tabs {
            .nav-link {
                border-radius: 30px;

                @include media-breakpoint-up(md) {
                    font-size: $font-size-md;
                }

                @include media-breakpoint-between(xs,sm) {
                    font-size: $font-size-xs;
                }

                &.active {
                    background-color: $gray-300;
                    color: $gray-700;

                    .theme-dark & {
                        background-color: $dm-gray-300;
                        color: $dm-gray-600;
                    }
                }

                &:hover {
                    background-color: $gray-400;
                    color: $gray-800;

                    .theme-dark & {
                        background-color: $dm-gray-400;
                        color: $dm-gray-800;
                    }

                }
            }
        }
    }
}