mirror of
https://github.com/danog/sass-site.git
synced 2024-12-14 02:17:36 +01:00
66 lines
801 B
SCSS
66 lines
801 B
SCSS
* {
|
|
&,
|
|
&:before,
|
|
&:after { 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;
|
|
|
|
background: image-url("textures/grey-prism.svg");
|
|
-webkit-tap-highlight-color: rgba($black, 0);
|
|
}
|
|
|
|
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%;
|
|
}
|
|
|
|
html {
|
|
background-position: left top;
|
|
background-repeat: repeat-x;
|
|
}
|
|
|
|
}
|