mirror of
https://github.com/marcobiedermann/search-engine-optimization.git
synced 2025-03-03 12:19:19 -05:00
28 lines
454 B
SCSS
28 lines
454 B
SCSS
@-ms-viewport {
|
|
width: device-width;
|
|
}
|
|
|
|
* {
|
|
-webkit-tap-highlight-color: transparent;
|
|
}
|
|
|
|
-moz-::selection,
|
|
::selection {
|
|
background: $base-color;
|
|
color: $base-bgcolor;
|
|
text-shadow: none;
|
|
}
|
|
|
|
html {
|
|
height: 100%;
|
|
}
|
|
|
|
body {
|
|
background: $base-bgcolor;
|
|
color: $base-color;
|
|
font: $base-font-weight #{$base-font-size}/#{$base-line-height} $base-font-family, $base-font-family-fallback;
|
|
min-height: 100%;
|
|
margin: 0;
|
|
position: relative;
|
|
}
|