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.
101 lines
2.0 KiB
101 lines
2.0 KiB
|
6 years ago
|
@import "~normalize.css/normalize.css";
|
||
|
6 years ago
|
@import "./variables";
|
||
|
6 years ago
|
@import "~element-ui/packages/theme-chalk/src/index";
|
||
|
6 years ago
|
@import "~@ele/style/index.scss";
|
||
|
6 years ago
|
@import "./element-ui";
|
||
|
|
@import './display';
|
||
|
|
@import "./transition";
|
||
|
|
@import "./nprogress";
|
||
|
6 years ago
|
|
||
|
|
body {
|
||
|
|
height: 100%;
|
||
|
|
-moz-osx-font-smoothing: grayscale;
|
||
|
|
-webkit-font-smoothing: antialiased;
|
||
|
6 years ago
|
font-family: -apple-system, BlinkMacSystemFont, Segoe UI, PingFang SC, Hiragino Sans GB, Microsoft YaHei, Helvetica Neue, Helvetica, Arial, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol;
|
||
|
6 years ago
|
-webkit-tap-highlight-color: transparent;
|
||
|
6 years ago
|
}
|
||
|
|
|
||
|
|
html {
|
||
|
|
height: 100%;
|
||
|
|
box-sizing: border-box;
|
||
|
|
}
|
||
|
|
|
||
|
|
#app {
|
||
|
|
height: 100%;
|
||
|
|
}
|
||
|
|
|
||
|
|
*,
|
||
|
|
*:before,
|
||
|
|
*:after {
|
||
|
|
box-sizing: inherit;
|
||
|
|
}
|
||
|
|
|
||
|
|
a:focus,
|
||
|
|
a:active,
|
||
|
|
div:focus {
|
||
|
|
outline: none;
|
||
|
|
}
|
||
|
|
|
||
|
|
a,
|
||
|
|
a:focus,
|
||
|
|
a:hover {
|
||
|
|
cursor: pointer;
|
||
|
|
color: inherit;
|
||
|
|
text-decoration: none;
|
||
|
|
}
|
||
|
|
|
||
|
6 years ago
|
//非移动端的滚动条样式修改
|
||
|
6 years ago
|
@include pc {
|
||
|
6 years ago
|
::-webkit-scrollbar {
|
||
|
|
width: 6px;
|
||
|
6 years ago
|
|
||
|
6 years ago
|
&:horizontal {
|
||
|
|
height: 6px;
|
||
|
|
}
|
||
|
6 years ago
|
|
||
|
6 years ago
|
&-thumb {
|
||
|
|
width: 6px;
|
||
|
6 years ago
|
//border-radius: 5px;
|
||
|
6 years ago
|
background-color: rgba($--color-primary, 0.8);
|
||
|
6 years ago
|
|
||
|
6 years ago
|
&:hover {
|
||
|
|
background-color: rgba($--color-primary, 1);
|
||
|
6 years ago
|
}
|
||
|
6 years ago
|
}
|
||
|
|
}
|
||
|
|
}
|
||
|
|
|
||
|
|
.flex {
|
||
|
|
display: flex;
|
||
|
|
flex-wrap: wrap;
|
||
|
|
justify-content: space-between;
|
||
|
|
align-content: space-between;
|
||
|
|
}
|
||
|
|
|
||
|
|
.tip-row {
|
||
|
|
position: relative;
|
||
|
|
z-index: 1;
|
||
|
|
background: #fafafa;
|
||
|
|
padding: 8px 24px;
|
||
|
|
margin-bottom: 20px;
|
||
|
|
border-radius: 2px;
|
||
|
|
display: block;
|
||
|
|
line-height: 32px;
|
||
|
|
font-size: 16px;
|
||
|
|
font-family: -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen, Ubuntu, Cantarell, Fira Sans, Droid Sans, Helvetica Neue, sans-serif;
|
||
|
|
color: #337ab7;
|
||
|
6 years ago
|
user-select: none;
|
||
|
6 years ago
|
-webkit-font-smoothing: antialiased;
|
||
|
|
-moz-osx-font-smoothing: grayscale;
|
||
|
|
|
||
|
|
* + & {
|
||
|
|
margin-top: 40px;
|
||
|
|
}
|
||
|
|
|
||
|
|
a {
|
||
|
|
color: #337ab7;
|
||
|
|
cursor: pointer;
|
||
|
6 years ago
|
text-decoration: underline;
|
||
|
6 years ago
|
}
|
||
|
|
}
|