2012-11-28 12:09:54 +01:00
|
|
|
// ===========================================================================
|
|
|
|
// SITE
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
html {
|
|
|
|
font-size: 62.5%;
|
|
|
|
text-rendering: optimizelegibility;
|
|
|
|
@include background($background-color image_url("textures/light.gif"));
|
|
|
|
color: $text-color;
|
|
|
|
}
|
|
|
|
|
|
|
|
body {
|
2012-11-28 12:59:42 +01:00
|
|
|
@extend %source-sans-pro-regular;
|
2012-11-28 12:09:54 +01:00
|
|
|
@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; }
|