Project

General

Profile

1
// default theme
2
@theme_default_color:         @md-color-light-blue-500;
3
@theme_default_colorLight:    @md-color-light-blue-50;
4
@theme_default_colorDark:     @md-color-light-blue-700;
5
@theme_default_colorAccent:   @md-color-light-green-A200;
6

    
7
.uk-navbar {
8
    background: @theme_default_color;
9
    &-nav {
10
        > li > a {
11
            color: @white;
12
            &:hover,
13
            &:active {
14
                background: none;
15
                color: @white;
16
            }
17
        }
18
    }
19
}
20

    
21
.hero_section {
22
    background: @theme_default_color;
23
}
    (1-1/1)