mirror of
https://github.com/danog/sass-site.git
synced 2024-12-13 09:57:35 +01:00
28 lines
663 B
SCSS
28 lines
663 B
SCSS
// ===========================================================================
|
|
// SITE
|
|
|
|
|
|
|
|
html {
|
|
font-size: 62.5%;
|
|
text-rendering: optimizelegibility;
|
|
@include background($background-color image_url("textures/light.gif"));
|
|
color: $text-color;
|
|
text-shadow: 0 1px 1px $background-color;
|
|
}
|
|
|
|
body {
|
|
@extend %source-sans-pro-regular;
|
|
@include font-size;
|
|
background-color: transparent;
|
|
}
|
|
|
|
// Selections have to be separate so this one is a mixin.
|
|
@mixin selection {
|
|
background: $selection-background-color;
|
|
color: $selection-text-color;
|
|
text-shadow: none;
|
|
}
|
|
|
|
::-moz-selection { @include selection; }
|
|
::selection { @include selection; } |