12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758 |
- @import './variables';
- @import './mixin';
- @import './element-ui';
- body {
- height: 100%;
- overflow: hidden;
- font-family: 'Helvetica Neue', Helvetica, 'PingFang SC', 'Hiragino Sans GB', 'Microsoft YaHei', 'Arial', sans-serif;
- -moz-osx-font-smoothing: grayscale;
- -webkit-font-smoothing: antialiased;
- text-rendering: optimizeLegibility;
- }
- label {
- font-weight: bold;
- }
- html {
- box-sizing: border-box;
- height: 100%;
- }
- #app {
- height: 100%;
- }
- *,
- *::before,
- *::after {
- box-sizing: inherit;
- }
- a,
- a:focus,
- a:hover {
- color: inherit;
- text-decoration: none;
- cursor: pointer;
- }
- a:focus,
- a:active {
- outline: none;
- }
- div:focus {
- outline: none;
- }
- .container {
- width: 1000px;
- height: 100%;
- margin: 0 auto;
- }
- .t-right {
- text-align: right;
- }
|