1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556 |
- // ================================================================================================
- // 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, Montserrat,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;
- font-family: Montserrat,Nunito,sans-serif;
- small {
- font-size: 15px;
- display: inline-block;
- padding-left: 5px;
- font-weight: 300;
- }
- }
- code {
- box-shadow: 0 1px 1px rgba(0,0,0,0.125);
- padding: 3px 5px;
- background: #f1f1f1;
- }
- .pagination .page-item .page-link {
- font-weight: 600;
- }
|