Proyectos de Subversion Moodle

Rev

| Ultima modificación | Ver Log |

Rev Autor Línea Nro. Línea
1 efrain 1
.secondary-navigation {
2
    max-width: 100%;
3
    margin: 0 auto;
4
 
5
    #page-site-index & {
6
        @include media-breakpoint-up(md) {
7
        position: fixed;
8
        z-index: $zindex-fixed;
9
        left: calc(50% - 300px);
10
        top: $navbar-height + 20px;
11
        width: 600px;
12
        }
13
    }
14
 
15
    &+.rui-course-header {
16
        margin-top: 20px;
17
    }
18
 
19
    .navigation {
20
        .nav-tabs {
21
            .nav-link {
22
                border-radius: 30px;
23
 
24
                @include media-breakpoint-up(md) {
25
                    font-size: $font-size-md;
26
                }
27
 
28
                @include media-breakpoint-between(xs,sm) {
29
                    font-size: $font-size-xs;
30
                }
31
 
32
                &.active {
33
                    background-color: $gray-300;
34
                    color: $gray-700;
35
 
36
                    .theme-dark & {
37
                        background-color: $dm-gray-300;
38
                        color: $dm-gray-600;
39
                    }
40
                }
41
 
42
                &:hover {
43
                    background-color: $gray-400;
44
                    color: $gray-800;
45
 
46
                    .theme-dark & {
47
                        background-color: $dm-gray-400;
48
                        color: $dm-gray-800;
49
                    }
50
 
51
                }
52
            }
53
        }
54
    }
55
}