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

6
7
8

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

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

// Container (centered, fixed-width layouts)
Mark Otto's avatar
Mark Otto committed
20
.container {
21
  .fixed-container();
Jacob Thornton's avatar
Jacob Thornton committed
22
23
24
}

// Fluid layouts (left aligned, with sidebar, min- & max-width content)
25
.fluid-container {
26
  position: relative;
Mark Otto's avatar
Mark Otto committed
27
  min-width: 940px;
28
29
  padding-left: 20px;
  padding-right: 20px;
Jacob Thornton's avatar
Jacob Thornton committed
30
  .clearfix();
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
}
// Sidebars (left and right options)
.fluid-sidebar-left,
.fluid-sidebar-right {
  width: 220px;
}
.fluid-sidebar-left   { float: left; }
.fluid-sidebar-right  { float: right; }
// The main content area
.fluid-content {
  margin-left: 240px;
}
// Reverse layout for sidebar on right
.fluid-container.reverse .fluid-content {
  margin-left: 0;
  margin-right: 240px;
Jacob Thornton's avatar
Jacob Thornton committed
47
48
}

49

50
51
// BASE STYLES
// -----------
Jacob Thornton's avatar
Jacob Thornton committed
52
53
54

// Links
a {
55
56
  font-weight: inherit;
  line-height: inherit;
57
  color: @linkColor;
Jacob Thornton's avatar
Jacob Thornton committed
58
59
  text-decoration: none;
  &:hover {
60
    color: @linkColorHover;
Jacob Thornton's avatar
Jacob Thornton committed
61
62
63
    text-decoration: underline;
  }
}
64
65
66
67
68
69
70
71

// Quick floats
.pull-right {
  float: right;
}
.pull-left {
  float: left;
}
72

Mark Otto's avatar
Mark Otto committed
73
74
75
76
77
78
79
80
// Toggling content
.hide {
  display: none;
}
.show {
  display: block;
}

81
82
83

// GRID SYSTEM
// -----------
84
// To customize the grid system, bring up the variables.less file and change the column count, size, and gutter there
85
.row {
86
  margin-left: -@gridGutterWidth;
87
  .clearfix();
88
}
89

90
91
92
93
94
// Find all .span# classes within .row and give them the necessary properties for grid columns (supported by all browsers back to IE7)
// Credit to @dhg for the idea
[class*="span"] {
  .gridColumn();
}
95

96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
// Default columns
.span1     { .columns(1); }
.span2     { .columns(2); }
.span3     { .columns(3); }
.span4     { .columns(4); }
.span5     { .columns(5); }
.span6     { .columns(6); }
.span7     { .columns(7); }
.span8     { .columns(8); }
.span9     { .columns(9); }
.span10    { .columns(10); }
.span11    { .columns(11); }
.span12    { .columns(12); }

// Offset column options
.offset1   { .offset(1); }
.offset2   { .offset(2); }
.offset3   { .offset(3); }
.offset4   { .offset(4); }
.offset5   { .offset(5); }
.offset6   { .offset(6); }
.offset7   { .offset(7); }
.offset8   { .offset(8); }
.offset9   { .offset(9); }
.offset10  { .offset(10); }
.offset11  { .offset(11); }