You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
360 B
20 lines
360 B
@import "variables"; |
|
//一些变量 |
|
@import "utils"; |
|
//for循环生成的 margin、padding、width、height类 |
|
@import "custom"; |
|
//自定义的一些快捷css类 |
|
@import "color"; |
|
//颜色 |
|
@import "layout"; //布局 |
|
|
|
|
|
html, body { |
|
width: 100%; |
|
height: 100%; |
|
//background: #2e3244; |
|
background: $main-bg; |
|
font-size: 62.5%; |
|
margin: 0; |
|
padding: 0; |
|
}
|
|
|