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.
37 lines
625 B
37 lines
625 B
@import "./reset.scss";
|
|
body,
|
|
button,
|
|
input,
|
|
select,
|
|
textarea {
|
|
font: 12px/1.5 tahoma, arial, "Hiragino Sans GB", "\5b8b\4f53", sans-serif;
|
|
}
|
|
body{
|
|
background-image: url("@/assets/images/0.jpg");
|
|
background-attachment: fixed;
|
|
background-position: center center;
|
|
background-repeat: no-repeat;
|
|
background-size: cover;
|
|
}
|
|
a {
|
|
// color: initial;
|
|
display: inline-block;
|
|
text-decoration: none;
|
|
color: inherit;
|
|
}
|
|
|
|
@mixin clearfix {
|
|
&:after {
|
|
clear: both;
|
|
content: ".";
|
|
display: block;
|
|
height: 0;
|
|
line-height: 0;
|
|
overflow: hidden;
|
|
}
|
|
*height: 1%;
|
|
}
|
|
|
|
.clearfix {
|
|
@include clearfix;
|
|
}
|
|
|