asd.scss
@charset "utf-8";
@import "asd_main";
body,
h1,
h2,
h3,
h4,
h5,
h6,
div,
p,
dl,
dt,
dd,
ol,
ul,
li,
form,
table,
th,
td,
a,
img,
span,
strong,
var,
em,
input,
textarea,
select,
option {
margin: 0;
padding: 0;
}
html,
body {
font: 12px/1.5 MicrosoftYaHei, tahoma, arial, Hiragino Sans GB, \\5b8b\4f53, sans-serif;
background: #ffffff;
position: relative;
z-index: 10;
color: #000000;
width: 100%;
min-height: 100%;
}
ul,
ol {
list-style: none;
}
img {
border: 0;
}
input,
select,
textarea {
outline: 0;
}
textarea {
resize: none;
}
table {
border-collapse: collapse;
border-spacing: 0;
}
th,
strong,
var,
em {
font-weight: normal;
font-style: normal;
}
a {
text-decoration: none;
-webkit-tap-highlight-color: transparent;
-webkit-touch-callout: none;
-webkit-user-select: none;
}
a:active,
a:focus,
a:visited {
color: #232323;
}
pre {
white-space: pre-wrap;
word-wrap: break-word;
}
a:link, a:visited, a:hover, a:active {
text-decoration: none;
}
body {
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}
html {
-webkit-text-size-adjust: none;
}
asd_main
$maxWidth: 1200px;
$mainColor: #0091EA;
@mixin writtenWords($line-height) {
font-size: 12px;
font-weight: 400;
color: #666666;
line-height: $line-height;
}
@mixin content($mt, $mr, $mb, $ml) {
max-width: $maxWidth;
margin: $mt $mr $mb $ml;
}
@mixin displayiFlex() {
display: flex;
}
@mixin clearFix() {
*zoom: 1;
&:before,
&:after {
content: "";
display: table;
}
&:after {
clear: both;
}
}