jinjianback1.1/src/styles/index.scss

60 lines
855 B
SCSS
Raw Normal View History

2017-11-24 16:30:40 +08:00
@import './variables.scss';
2017-06-30 11:01:04 +08:00
@import './mixin.scss';
2017-11-24 14:03:56 +08:00
@import './transition.scss';
2017-11-24 16:30:40 +08:00
@import './element-ui.scss';
@import './sidebar.scss';
2017-11-24 14:03:56 +08:00
2017-06-26 13:38:24 +08:00
body {
-moz-osx-font-smoothing: grayscale;
-webkit-font-smoothing: antialiased;
text-rendering: optimizeLegibility;
font-family: Helvetica Neue, Helvetica, PingFang SC, Hiragino Sans GB, Microsoft YaHei, Arial, sans-serif;
}
html {
box-sizing: border-box;
}
*,
*:before,
*:after {
box-sizing: inherit;
}
2017-11-24 13:50:31 +08:00
div:focus{
outline: none;
}
2017-06-26 13:38:24 +08:00
a:focus,
a:active {
outline: none;
}
a,
a:focus,
a:hover {
cursor: pointer;
color: inherit;
text-decoration: none;
}
2017-06-26 18:03:05 +08:00
.clearfix {
&:after {
visibility: hidden;
display: block;
font-size: 0;
content: " ";
clear: both;
height: 0;
2017-06-26 13:38:24 +08:00
}
}
//main-container全局样式
2017-06-26 18:03:05 +08:00
.app-main{
min-height: 100%
2017-06-26 13:38:24 +08:00
}
2017-06-26 18:03:05 +08:00
.app-container {
padding: 20px;
2017-06-26 13:38:24 +08:00
}