scaffolding.less 557 Bytes
Newer Older
1
2
3
// Scaffolding
// Basic and global styles for generating a grid system, structural layout, and page templates
// -------------------------------------------------------------------------------------------
Jacob Thornton's avatar
Jacob Thornton committed
4

5
6
7

// STRUCTURAL LAYOUT
// -----------------
Jacob Thornton's avatar
Jacob Thornton committed
8
9

body {
10
  margin: 0;
11
12
13
  font-family: @baseFontFamily;
  font-size: @baseFontSize;
  line-height: @baseLineHeight;
14
  color: @gray;
15
  background-color: @white;
Jacob Thornton's avatar
Jacob Thornton committed
16
17
}

18

19
20
// LINKS
// -----
Jacob Thornton's avatar
Jacob Thornton committed
21
22

a {
23
  color: @linkColor;
Jacob Thornton's avatar
Jacob Thornton committed
24
25
  text-decoration: none;
  &:hover {
26
    color: @linkColorHover;
Jacob Thornton's avatar
Jacob Thornton committed
27
28
29
    text-decoration: underline;
  }
}