yapi/client/styles/common.scss

44 lines
612 B
SCSS
Raw Normal View History

2017-07-10 19:50:11 +08:00
@charset "utf-8";
@import '~antd/dist/antd.css';
html {
2017-07-11 19:12:13 +08:00
font-size:625%;
background: #f1f3f6;
2017-07-10 19:50:11 +08:00
}
html, body {
font-family: tahoma, 'Microsoft Yahei';
margin: 0;
padding: 0;
height: 100%;
}
div, article, p, table, tr, td, th, ul, ol, li, h1, h2, h3, form, dl, dt, dd {
margin: 0;
padding: 0;
box-sizing: border-box;
}
ul {
list-style-type: none;
}
a {
text-decoration: none;
}
a:hover {
color: #636363;
}
em {
font-style: normal;
}
// 页面最外层元素 样式
.router-main {
display: -webkit-box;
2017-07-11 15:03:02 +08:00
-webkit-box-orient: vertical;
2017-07-10 19:50:11 +08:00
height: 100%;
2017-07-12 10:17:57 +08:00
background-color: #ececec;
2017-07-10 19:50:11 +08:00
}