scaffolding.less 2.71 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

// GRID SYSTEM
// -----------
Jacob Thornton's avatar
Jacob Thornton committed
9

10
.row {
Jacob Thornton's avatar
Jacob Thornton committed
11
  .clearfix();
12

13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
  // 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); }
30

31
32
33
34
35
36
37
38
39
40
41
42
43
  // 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(8); }
  .offset10  { .offset(10); }
  .offset11  { .offset(11); }
  .offset12  { .offset(12); }
Jacob Thornton's avatar
Jacob Thornton committed
44
45
46
}


47
48
// STRUCTURAL LAYOUT
// -----------------
Jacob Thornton's avatar
Jacob Thornton committed
49
50
51
52
53

html, body {
  background-color: #fff;
}
body {
54
  margin: 60px 0 0; // Add margin to the top of the page for the topbar
55
  #font > .sans-serif(normal,@basefont,@baseline);
Jacob Thornton's avatar
Jacob Thornton committed
56
57
58
59
60
61
62
63
64
65
66
67
  color: @gray;
  text-rendering: optimizeLegibility;
}

// Container (centered, fixed-width layouts)
div.container {
  width: 940px;
  margin: 0 auto;
}

// Fluid layouts (left aligned, with sidebar, min- & max-width content)
div.container-fluid {
68
  padding: 0 20px;
Jacob Thornton's avatar
Jacob Thornton committed
69
70
71
72
73
74
75
76
77
78
79
80
81
  .clearfix();
  div.sidebar {
    float: left;
    width: 220px;
  }
  div.content {
    min-width: 700px;
    max-width: 1180px;
    margin-left: 240px;
  }
}


82
83
// BASE STYLES
// -----------
Jacob Thornton's avatar
Jacob Thornton committed
84
85
86

// Links
a {
87
  color: @linkColor;
Jacob Thornton's avatar
Jacob Thornton committed
88
89
90
  text-decoration: none;
  line-height: inherit;
  &:hover {
91
    color: @linkColorHover;
Jacob Thornton's avatar
Jacob Thornton committed
92
93
94
95
96
97
98
    text-decoration: underline;
  }
}

// Buttons
.btn {
  .button();
99
  .transition(.1s linear all);
Jacob Thornton's avatar
Jacob Thornton committed
100
  &.primary {
101
    #gradient > .vertical(@blue, @blueDark);
Jacob Thornton's avatar
Jacob Thornton committed
102
103
104
105
106
107
108
109
    color: #fff;
    text-shadow: 0 -1px 0 rgba(0,0,0,.25);
    &:hover {
      color: #fff;
    }
  }
  &.large {
    font-size: 16px;
110
    line-height: 28px;
Jacob Thornton's avatar
Jacob Thornton committed
111
112
113
114
115
116
117
    .border-radius(6px);
  }
  &.small {
    padding-right: 9px;
    padding-left: 9px;
    font-size: 11px;
  }
118
119
120
121
122
  &:disabled,
  &.disabled {
    background-image: none;
    .opacity(65);
    cursor: default;
123
124
125
126
127
  }
  &:active {
    @shadow: inset 0 3px 7px rgba(0,0,0,.1), 0 1px 2px rgba(0,0,0,.05);
    .box-shadow(@shadow);
  }
Jacob Thornton's avatar
Jacob Thornton committed
128
}
129

130
// Help Firefox not be a jerk about adding extra padding to buttons
Jacob Thornton's avatar
Jacob Thornton committed
131
132
133
134
135
136
137
button.btn,
input[type=submit].btn {
  &::-moz-focus-inner {
  	padding: 0;
  	border: 0;
  }
}