123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687 |
- @import './variables.scss';
- @import './mixin.scss';
- @import './transition.scss';
- @import './element-ui.scss';
- @import './sidebar.scss';
- body {
- height: 100%;
- -moz-osx-font-smoothing: grayscale;
- -webkit-font-smoothing: antialiased;
- text-rendering: optimizeLegibility;
- font-family: Helvetica Neue, Helvetica, PingFang SC, Hiragino Sans GB, Microsoft YaHei, Arial, sans-serif;
- }
- label {
- font-weight: 700;
- }
- html {
- height: 100%;
- box-sizing: border-box;
- }
- #app {
- height: 100%;
- }
- *,
- *:before,
- *:after {
- box-sizing: inherit;
- }
- a:focus,
- a:active {
- outline: none;
- }
- a,
- a:focus,
- a:hover {
- cursor: pointer;
- color: inherit;
- text-decoration: none;
- }
- div:focus {
- outline: none;
- }
- .clearfix {
- &:after {
- visibility: hidden;
- display: block;
- font-size: 0;
- content: " ";
- clear: both;
- height: 0;
- }
- }
- // main-container global css
- .app-container {
- padding: 20px;
- }
- .bottom-time-top {
- margin-top: 30px;
- }
- .bottom-time-botom {
- margin-bottom: 30px;
- }
- .bottom-time {
- width: 100%;
- display: flex;
- justify-content: flex-start;
- align-items: center;
- margin-bottom: 10px;
- .bottom-time-bold {
- font-weight: bold;
- }
- .bottom-time-list {
- width: 50%;
- }
- .bottom-time-listw {
- width: 100%;
- }
- }
|