2011-11-25 21:34:55 -08:00
|
|
|
// Scaffolding
|
|
|
|
// Basic and global styles for generating a grid system, structural layout, and page templates
|
|
|
|
// -------------------------------------------------------------------------------------------
|
2011-05-03 18:09:25 -07:00
|
|
|
|
2011-08-16 22:58:01 -07:00
|
|
|
|
|
|
|
// STRUCTURAL LAYOUT
|
|
|
|
// -----------------
|
2011-05-03 18:09:25 -07:00
|
|
|
|
|
|
|
body {
|
2011-08-21 17:06:37 -07:00
|
|
|
margin: 0;
|
2011-10-04 00:20:38 -07:00
|
|
|
font-family: @baseFontFamily;
|
|
|
|
font-size: @baseFontSize;
|
|
|
|
line-height: @baseLineHeight;
|
2012-01-30 09:41:31 -08:00
|
|
|
color: @textColor;
|
2011-11-17 01:28:42 -08:00
|
|
|
background-color: @white;
|
2011-05-03 18:09:25 -07:00
|
|
|
}
|
|
|
|
|
2011-09-02 23:01:38 -07:00
|
|
|
|
2012-01-26 14:50:55 -08:00
|
|
|
// LINKS
|
|
|
|
// -----
|
2011-05-03 18:09:25 -07:00
|
|
|
|
|
|
|
a {
|
2011-06-27 16:47:12 -07:00
|
|
|
color: @linkColor;
|
2011-05-03 18:09:25 -07:00
|
|
|
text-decoration: none;
|
2012-01-27 13:20:02 -08:00
|
|
|
}
|
|
|
|
a:hover {
|
|
|
|
color: @linkColorHover;
|
|
|
|
text-decoration: underline;
|
2011-05-03 18:09:25 -07:00
|
|
|
}
|