2020-12-18 17:18:51 +08:00
|
|
|
* {
|
|
|
|
margin: 0;
|
|
|
|
padding: 0;
|
|
|
|
box-sizing: border-box;
|
|
|
|
}
|
|
|
|
|
|
|
|
html,
|
2020-12-20 16:05:55 +08:00
|
|
|
body,
|
|
|
|
#app {
|
2020-12-24 16:06:02 +08:00
|
|
|
margin: 0;
|
|
|
|
padding: 0;
|
2020-12-18 17:18:51 +08:00
|
|
|
height: 100%;
|
2020-12-24 16:06:02 +08:00
|
|
|
font-family: Helvetica Neue, Helvetica, PingFang SC, Hiragino Sans GB,
|
|
|
|
Microsoft YaHei, SimSun, sans-serif;
|
|
|
|
font-weight: 400;
|
|
|
|
-webkit-font-smoothing: antialiased;
|
|
|
|
-webkit-tap-highlight-color: transparent;
|
2020-12-18 17:18:51 +08:00
|
|
|
}
|
2020-12-26 18:22:15 +08:00
|
|
|
|
|
|
|
@for $i from 10 through 32 {
|
|
|
|
.font#{$i} {
|
|
|
|
font-size: #{$i}px !important;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
@for $i from 5 through 20 {
|
|
|
|
.mt#{$i} {
|
|
|
|
margin-top: #{$i}px !important;
|
|
|
|
}
|
|
|
|
.mr#{$i} {
|
|
|
|
margin-right: #{$i}px !important;
|
|
|
|
}
|
|
|
|
.mb#{$i} {
|
|
|
|
margin-bottom: #{$i}px !important;
|
|
|
|
}
|
|
|
|
.ml#{$i} {
|
|
|
|
margin-left: #{$i}px !important;
|
|
|
|
}
|
|
|
|
.pt#{$i} {
|
|
|
|
padding-top: #{$i}px !important;
|
|
|
|
}
|
|
|
|
.pr#{$i} {
|
|
|
|
padding-right: #{$i}px !important;
|
|
|
|
}
|
|
|
|
.pb#{$i} {
|
|
|
|
padding-bottom: #{$i}px !important;
|
|
|
|
}
|
|
|
|
.pl#{$i} {
|
|
|
|
padding-left: #{$i}px !important;
|
|
|
|
}
|
|
|
|
}
|