scaffolding.less 451 Bytes
Newer Older
1
//
2
// Scaffolding
3
// --------------------------------------------------
Jacob Thornton's avatar
Jacob Thornton committed
4

5

6
// Body reset
7
// -------------------------
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;
Mark Otto's avatar
Mark Otto committed
14
  color: @textColor;
15
  background-color: @bodyBackground;
Jacob Thornton's avatar
Jacob Thornton committed
16
17
}

18

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

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