1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192 |
- @import '_theme-color-variables';
- .theme-green {
- .navbar {
- background-color: $theme-green;
- }
- .navbar-brand {
- color: $theme-green-navbar-brand;
- &:hover {
- color: $theme-green-navbar-brand_hover;
- }
- &:active {
- color: $theme-green-navbar-brand_active;
- }
- &:focus {
- color: $theme-green-navbar-brand_focus;
- }
- }
- .nav {
- > li {
- > a {
- color: $theme-green-nav-anchor;
- &:hover {
- background-color: $theme-green-nav-anchor_hover;
- }
- &:focus {
- background-color: $theme-green-nav-anchor_focus;
- }
- }
- }
- .open {
- > a {
- background-color: $theme-green-nav-anchor-opened;
- &:hover {
- background-color: $theme-green-nav-anchor-opened_hover;
- }
- &:focus {
- background-color: $theme-green-nav-anchor-opened_focus;
- }
- }
- }
- }
- .bars {
- color: $theme-green-bar;
- }
- .sidebar {
- .menu {
- .list {
- li.active {
- background-color: $theme-green-menu-list-active;
- > :first-child {
- i, span {
- color: $theme-green;
- }
- }
- }
- .toggled {
- background-color: $theme-green-menu-list-toggled;
- }
- .ml-menu {
- background-color: $theme-green-menu-list-submenu;
- }
- }
- }
- .legal {
- background-color: $theme-green-legal-bg;
- .copyright {
- a {
- color: $theme-green !important;
- }
- }
- }
- }
- }
|