| 1234567891011121314151617181920212223242526272829 |
- /**
- * 自定义深海军蓝暗色主题
- */
- $base-color-blue: #165dff;
- $base-color-white: #e0e6ed;
- $base-color-black: #05101c;
- $base-border-color: #2d4966;
- $base-padding: 15px;
- $base-border-radius: 6px;
- $base-transition: all .2s ease;
- $base-left-menu-width: 210px;
- $base-left-menu-width-min: 65px;
- $base-right-content-width: calc(100% - #{$base-left-menu-width});
- $base-top-bar-height: 55px;
- $base-tags-bar-height: 40px;
- $base-nav-bar-height: 55px;
- $base-z-index: 1000;
- .nav-bar-container,
- .tags-bar-container,
- .side-bar-container {
- background: #0b1d34;
- color: $base-color-white;
- }
- .app-main-container {
- background: transparent;
- }
|