123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960 |
- @import './variables.scss';
- @import './mixin.scss';
- body {
- height: 100%;
- -moz-osx-font-smoothing: grayscale;
- -webkit-font-smoothing: antialiased;
- text-rendering: optimizeLegibility;
- overflow: hidden;
- /* stylelint-disable-next-line */
- 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;
- }
- /* stylelint-disable-next-line no-descending-specificity */
- a,
- a:focus,
- a:hover {
- cursor: pointer;
- color: inherit;
- text-decoration: none;
- }
- div:focus {
- outline: none;
- }
- .container {
- width: 1000px;
- margin: 0 auto;
- height: 100%;
- }
- .t-right {
- text-align: right;
- }
|