74 lines
916 B
SCSS
74 lines
916 B
SCSS
* {
|
|
padding: 0;
|
|
margin: 0;
|
|
border: 0;
|
|
}
|
|
|
|
*,
|
|
*::before,
|
|
*::after {
|
|
box-sizing: border-box;
|
|
}
|
|
|
|
:focus,
|
|
:active {
|
|
outline: none;
|
|
}
|
|
|
|
a {
|
|
color: inherit;
|
|
text-decoration: none;
|
|
}
|
|
|
|
a:focus,
|
|
a:active {
|
|
outline: none;
|
|
}
|
|
|
|
html,
|
|
body {
|
|
min-width: $minWidth + px;
|
|
height: 100%;
|
|
}
|
|
|
|
body {
|
|
font-family: $fontFamily;
|
|
font-size: $fontSize;
|
|
line-height: 1;
|
|
color: $mainColor;
|
|
text-size-adjust: 100%;
|
|
-webkit-font-smoothing: antialiased;
|
|
-moz-osx-font-smoothing: grayscale;
|
|
}
|
|
|
|
input,
|
|
button,
|
|
textarea {
|
|
font-family: $fontFamily;
|
|
font-size: inherit;
|
|
}
|
|
|
|
button {
|
|
color: inherit;
|
|
cursor: pointer;
|
|
background-color: transparent;
|
|
}
|
|
|
|
ul li {
|
|
list-style: none;
|
|
}
|
|
|
|
img {
|
|
vertical-align: top;
|
|
}
|
|
|
|
h1,
|
|
h2,
|
|
h3,
|
|
h4,
|
|
h5,
|
|
h6 {
|
|
font-size: inherit;
|
|
font-weight: inherit;
|
|
}
|