scaffolding.less 2.76 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
11
12
13

html, body {
  background-color: #fff;
}
body {
14
  margin: 0;
15
  #font > .sans-serif(normal,@basefont,@baseline);
16
  color: @grayDark;
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)
Mark Otto's avatar
Mark Otto committed
25
.container-fluid {
26
  position: relative;
27
28
  padding-left: 20px;
  padding-right: 20px;
Jacob Thornton's avatar
Jacob Thornton committed
29
  .clearfix();
30
  > .sidebar {
Jacob Thornton's avatar
Jacob Thornton committed
31
32
33
    float: left;
    width: 220px;
  }
34
  // TODO in v2: rename this and .popover .content to be more specific
35
  > .content {
Jacob Thornton's avatar
Jacob Thornton committed
36
37
38
    min-width: 700px;
    max-width: 1180px;
    margin-left: 240px;
39
    .clearfix();
Jacob Thornton's avatar
Jacob Thornton committed
40
41
42
  }
}

43
44
45
46
47
48
49
.hide {
  display: none;
}

.show {
  display: block;
}
Jacob Thornton's avatar
Jacob Thornton committed
50

51

52
53
// BASE STYLES
// -----------
Jacob Thornton's avatar
Jacob Thornton committed
54
55
56

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

// Quick floats
.pull-right {
  float: right;
}
.pull-left {
  float: left;
}
74
75
76
77
78
79
80
81


// GRID SYSTEM
// -----------

.row {
  .clearfix();
  margin-left: -1 * @gridGutterWidth;
82
}
83

84
85
86
87
88
// 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();
}
89

90
91
92
93
94
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
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
// 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); }
.span13    { .columns(13); }
.span14    { .columns(14); }
.span15    { .columns(15); }
.span16    { .columns(16); }

// For optional 24-column grid
.span17    { .columns(17); }
.span18    { .columns(18); }
.span19    { .columns(19); }
.span20    { .columns(20); }
.span21    { .columns(21); }
.span22    { .columns(22); }
.span23    { .columns(23); }
.span24    { .columns(24); }

// 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); }
.offset12  { .offset(12); }

// Unique column sizes for 16-column grid
.span-one-third     { width: 300px; }
.span-two-thirds    { width: 620px; }
.offset-one-third   { margin-left: 340px; }
.offset-two-thirds  { margin-left: 660px; }