index.scss 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103
  1. // @import "./common.scss";
  2. @import "./transition.scss";
  3. @import "./antd.scss";
  4. // @import "./components/index.scss";
  5. // @import "./views/index.scss";
  6. body {
  7. min-width: 1300px;
  8. overflow-x: auto;
  9. p {
  10. margin-bottom: 0;
  11. }
  12. }
  13. @font-face {
  14. font-family: "WebTitle";
  15. src: url(//firemanage.oss-cn-hangzhou.aliyuncs.com/FE-resource/fonts/web-font.ttf);
  16. }
  17. .title-font {
  18. font-family: "WebTitle";
  19. }
  20. .web-wrapper {
  21. height: 100vh;
  22. .web-menu {
  23. height: 100%;
  24. overflow-y: auto;
  25. }
  26. .web-header {
  27. position: relative;
  28. .web-title {
  29. font-size: 32px;
  30. color: #fff;
  31. display: inline-block;
  32. }
  33. .user-wrap {
  34. position: absolute;
  35. right: 30px;
  36. top: 50%;
  37. transform: translate(0, -50%);
  38. color: #fff;
  39. font-size: $font-size-bigger;
  40. cursor: pointer;
  41. @include flex();
  42. .user {
  43. margin: 0 10px;
  44. line-height: 1.8;
  45. }
  46. }
  47. }
  48. .web-container {
  49. background: url(//firemanage.oss-cn-hangzhou.aliyuncs.com/FE-resource/images/background.svg)
  50. #f0f2f5 no-repeat top left / contain fixed;
  51. }
  52. }
  53. .clearfix {
  54. &:after {
  55. visibility: hidden;
  56. display: block;
  57. font-size: 0;
  58. content: " ";
  59. clear: both;
  60. height: 0;
  61. }
  62. }
  63. .full-width {
  64. width: 100%;
  65. }
  66. .page-wrap {
  67. padding: 23px;
  68. }
  69. .cursor {
  70. cursor: pointer;
  71. }
  72. .setting-group {
  73. span {
  74. margin-right: 5px;
  75. }
  76. }
  77. .operator-bar {
  78. margin-bottom: 15px;
  79. }
  80. .ml-10 {
  81. margin-left: 10px;
  82. }
  83. .theme {
  84. color: $theme-color;
  85. }