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.
36 lines
534 B
36 lines
534 B
7 years ago
|
// Base
|
||
|
*,
|
||
|
*::before,
|
||
|
*::after {
|
||
|
box-sizing: inherit;
|
||
|
}
|
||
|
|
||
|
html {
|
||
|
box-sizing: border-box;
|
||
|
font-size: $html-font-size;
|
||
|
line-height: $html-line-height;
|
||
|
-webkit-tap-highlight-color: transparent;
|
||
|
}
|
||
|
|
||
|
body {
|
||
|
background: $body-bg;
|
||
|
color: $body-font-color;
|
||
|
font-family: $body-font-family;
|
||
|
font-size: $font-size;
|
||
|
overflow-x: hidden;
|
||
|
text-rendering: optimizeLegibility;
|
||
|
}
|
||
|
|
||
|
a {
|
||
|
color: $link-color;
|
||
|
outline: none;
|
||
|
text-decoration: none;
|
||
|
|
||
|
&:focus,
|
||
|
&:hover,
|
||
|
&:active,
|
||
|
&.active {
|
||
|
color: $link-color-dark;
|
||
|
}
|
||
|
}
|