liuxiaolong
2019-05-06 8700cf1dc46c350371d865532c2914595187788e
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
@import "./_appwork/include-material";
@import "./_theme/common";
@import "./_theme/libs";
@import "./_theme/uikit";
 
$primary-color: #26B4FF;
$body-bg: #f8f8f8;
 
body {
  background: $body-bg;
}
 
@include appwork-common-material-theme($primary-color);
@include appwork-libs-material-theme($primary-color);
@include appwork-uikit-theme($primary-color);
 
// Navbar
 
@include appwork-navbar-variant('.bg-navbar-theme', #fff, $color: $text-muted, $active-color: $body-color);
 
.layout-navbar {
  box-shadow: 0 0 20px 0 rgba($black, .2);
}
 
// Sidenav
 
@include appwork-sidenav-variant('.bg-sidenav-theme', #2e323a, $color: #838790);
 
// Footer
 
@include appwork-footer-variant('.bg-footer-theme', #fff, $color: $text-muted, $active-color: $body-color);