dcat-app.scss 2.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102
  1. // ================================================================================================
  2. // File Name: dcat-bootstrap.scss
  3. // Description: Dcat Admin应用样式
  4. // ----------------------------------------------------------------------------------------------
  5. // Item name: Dcat Admin
  6. // Author: Jqh
  7. // Author URL: https://github.com/jqhph
  8. // ================================================================================================
  9. @import "variables/variables";
  10. // 进度条
  11. @import "./nprogress/NProgress";
  12. // sweetalert弹窗
  13. @import "./sweetalert/sweetalert2";
  14. html body {
  15. background-color: $body-bg;
  16. color: $font-color;
  17. }
  18. // 字体
  19. body, .header-navbar, .navigation, .breadcrumb, h1, h2, h3, h4, h5 {
  20. font-family: $font-family-sans-serif;
  21. }
  22. html body .content .content-wrapper {
  23. padding: calc(2.2rem - 0.4rem) 2.45rem 0;
  24. }
  25. ol, ul, dl {
  26. margin-bottom: 0;
  27. }
  28. // 阴影
  29. .shadow-0 {
  30. box-shadow: none!important;
  31. }
  32. .shadow {
  33. box-shadow: $shadow!important;
  34. }
  35. .shadow-100 {
  36. box-shadow: $shadow-100!important;
  37. }
  38. .shadow-200 {
  39. box-shadow: $shadow-200!important;
  40. }
  41. // 颜色class定义
  42. @import "./colors";
  43. // 布局
  44. @import "./components/layout";
  45. // 按钮
  46. @import "./components/button";
  47. // 顶部导航栏
  48. @import "./components/header-navbar";
  49. // 页面头
  50. @import "./components/content-header";
  51. // 表单
  52. @import "./components/form";
  53. // 分页
  54. @import "./components/pagination";
  55. // data-list-view 表格
  56. @import "./components/table";
  57. // grid
  58. @import "./components/grid";
  59. // 下拉菜单
  60. @import "./components/dropdown";
  61. // checkbox
  62. @import "./components/checkbox";
  63. // radio
  64. @import "./components/radio";
  65. // card
  66. @import "./components/card";
  67. // tree jquery.nestable
  68. @import "./components/nestable";
  69. // layer弹窗
  70. @import "./components/layer";
  71. // 滑动面板
  72. @import "./components/slider";
  73. // grid selector
  74. @import "./components/grid-selector";
  75. // box
  76. @import "./components/box";
  77. // label
  78. @import "./components/label";
  79. // tab
  80. @import "./components/tab";
  81. // menu
  82. @import "./components/menu";
  83. // alert
  84. @import "./components/alert";
  85. // code
  86. @import "./components/code";
  87. // link
  88. @import "./components/link";
  89. // img
  90. @import "./components/img";
  91. // popover
  92. @import "./components/popover";