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