28 lines
454 B
SCSS
Raw Normal View History

2015-02-27 15:32:37 +01:00
@-ms-viewport {
width: device-width;
}
* {
-webkit-tap-highlight-color: transparent;
}
-moz-::selection,
::selection {
2015-11-11 21:31:53 +01:00
background: $base-color;
color: $base-bgcolor;
2015-02-27 15:32:37 +01:00
text-shadow: none;
}
html {
height: 100%;
}
body {
2015-11-11 21:31:53 +01:00
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%;
2015-02-27 15:32:37 +01:00
margin: 0;
position: relative;
}