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