mirror of
https://github.com/danog/sass-site.git
synced 2024-12-14 10:28:05 +01:00
41 lines
808 B
SCSS
41 lines
808 B
SCSS
* { @include box-sizing(border-box); }
|
|
|
|
@include establish-baseline;
|
|
|
|
%reset-margin { margin: 0; }
|
|
%reset-border { border: 0; }
|
|
%reset-padding { padding: 0; }
|
|
|
|
%text {
|
|
font-family: $font-family-text;
|
|
color: $color-text;
|
|
}
|
|
|
|
html {
|
|
@extend %text;
|
|
overflow-x: hidden;
|
|
text: {
|
|
rendering: optimizeLegibility;
|
|
align: center;
|
|
}
|
|
background: image-url("textures/grey-prism.png") 50% 0;
|
|
@include background-size(50%);
|
|
-webkit-tap-highlight-color: rgba($black, 0);
|
|
|
|
&.toolkit-baseline { @include debug-vertical-alignment; }
|
|
}
|
|
|
|
body { background: none; }
|
|
|
|
@mixin theme-selection { background: $color-background-shade; }
|
|
|
|
::-moz-selection { @include theme-selection; }
|
|
::selection { @include theme-selection; }
|
|
|
|
|
|
|
|
@include breakpoint($tablet-large) {
|
|
html,
|
|
body { height: 100%; }
|
|
}
|