| 123456789101112131415161718192021222324252627282930313233343536373839404142434445 |
- // ================================================================================================
- // File Name: dcat-bootstrap.scss
- // Description: Dcat Admin应用样式
- // ----------------------------------------------------------------------------------------------
- // Item name: Dcat Admin
- // Author: Jqh
- // Author URL: https://github.com/jqhph
- // ================================================================================================
- @import "../../sass/core/variables/variables";
- @import "./variables";
- @import "./nprogress/NProgress";
- @import "./sweetalert/sweetalert2";
- html body {
- background-color: $body-background;
- }
- body, .header-navbar, .navigation, .breadcrumb, h1, h2, h3, h4, h5 {
- font-family: Nunito,system-ui,BlinkMacSystemFont,-apple-system,sans-serif;
- }
- body.vertical-layout.vertical-menu-modern.menu-expanded .main-menu .navigation > li > a > i:before {
- font-size: 1.3rem;
- }
- // 导航栏
- .breadcrumb {
- border-left: 0;
- }
- // 页面标题
- .content-header h1 {
- font-weight: 400;
- font-size: 24px;
- display: inline-block;
- small {
- font-size: 15px;
- display: inline-block;
- padding-left: 5px;
- font-weight: 300;
- }
- }
|