123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103 |
- // @import "./common.scss";
- @import "./transition.scss";
- @import "./antd.scss";
- // @import "./components/index.scss";
- // @import "./views/index.scss";
- body {
- min-width: 1300px;
- overflow-x: auto;
- p {
- margin-bottom: 0;
- }
- }
- @font-face {
- font-family: "WebTitle";
- src: url(//firemanage.oss-cn-hangzhou.aliyuncs.com/FE-resource/fonts/web-font.ttf);
- }
- .title-font {
- font-family: "WebTitle";
- }
- .web-wrapper {
- height: 100vh;
- .web-menu {
- height: 100%;
- overflow-y: auto;
- }
- .web-header {
- position: relative;
- .web-title {
- font-size: 32px;
- color: #fff;
- display: inline-block;
- }
- .user-wrap {
- position: absolute;
- right: 30px;
- top: 50%;
- transform: translate(0, -50%);
- color: #fff;
- font-size: $font-size-bigger;
- cursor: pointer;
- @include flex();
- .user {
- margin: 0 10px;
- line-height: 1.8;
- }
- }
- }
- .web-container {
- background: url(//firemanage.oss-cn-hangzhou.aliyuncs.com/FE-resource/images/background.svg)
- #f0f2f5 no-repeat top left / contain fixed;
- }
- }
- .clearfix {
- &:after {
- visibility: hidden;
- display: block;
- font-size: 0;
- content: " ";
- clear: both;
- height: 0;
- }
- }
- .full-width {
- width: 100%;
- }
- .page-wrap {
- padding: 23px;
- }
- .cursor {
- cursor: pointer;
- }
- .setting-group {
- span {
- margin-right: 5px;
- }
- }
- .operator-bar {
- margin-bottom: 15px;
- }
- .ml-10 {
- margin-left: 10px;
- }
- .theme {
- color: $theme-color;
- }
|