type.less 4.16 KB
Newer Older
Jacob Thornton's avatar
Jacob Thornton committed
1
/*
2
3
4
 * Typography.less
 * Headings, body text, lists, code, and more for a versatile and durable typography system
 */
Jacob Thornton's avatar
Jacob Thornton committed
5
6
7
8
9
10


/* Body text
-------------------------------------------------- */

p {
11
  #font > .shorthand(normal,14px,@baseline);
Jacob Thornton's avatar
Jacob Thornton committed
12
13
14
  margin-bottom: @baseline;
  small {
    font-size: 12px;
15
    color: @grayLight;
Jacob Thornton's avatar
Jacob Thornton committed
16
17
18
19
20
21
22
23
24
  }
}


/* Headings
-------------------------------------------------- */

h1, h2, h3, h4, h5, h6 {
  font-weight: 500;
25
  color: @grayDark;
Jacob Thornton's avatar
Jacob Thornton committed
26
  small {
27
    color: @grayLight;
Jacob Thornton's avatar
Jacob Thornton committed
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
  }
}
h1 {
  margin-bottom: @baseline;
  font-size: 30px;
  line-height: @baseline * 2;
  small {
    font-size: 18px;
  }
}
h2 {
  font-size: 24px;
  line-height: @baseline * 2;
  small {
    font-size: 14px;
  }
}
h3, h4, h5, h6 {
  line-height: @baseline * 2;
}
h3 {
  font-size: 18px;
  small {
    font-size: 14px;
  }
}
h4 {
  font-size: 16px;
  small {
    font-size: 12px;
  }
}
h5 {
  font-size: 14px;
}
h6 {
  font-size: 13px;
65
  color: @grayLight;
Jacob Thornton's avatar
Jacob Thornton committed
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
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
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
  text-transform: uppercase;
}



/* Colors
-------------------------------------------------- */

// Unordered and Ordered lists
ul, ol {
  margin: 0 0 @baseline 25px;
}
ul ul,
ul ol,
ol ol,
ol ul {
  margin-bottom: 0;
}
ul {
  list-style: disc;
}
ol {
  list-style: decimal;
}
li {
  line-height: @baseline;
  color: @gray;
}
ul.unstyled {
  list-style: none;
  margin-left: 0;
}

// Description Lists
dl {
  margin-bottom: @baseline;
  dt, dd {
    line-height: @baseline;
  }
  dt {
    font-weight: bold;
  }
  dd {
    margin-left: @baseline / 2;
  }
}


/* Misc
-------------------------------------------------- */

// Labels
span.label {
  background-color: #ccc;
  padding: 3px 5px;
  font-size: 10px;
  font-weight: bold;
  color: #fff;
  text-shadow: 0 0 1px rgba(0,0,0,.01);
  text-transform: uppercase;
  .border-radius(3px);
  &.expired {
    background-color: #f5f5f5;
    color: #999;
  }
  &.pending {
    background-color: #48489b;
  }
  &.declined {
    background-color: #9b4848;
  }
  &.active,
  &.approved {
    background-color: #59bf59;
  }
  &.disabled {
    background-color: #faa226;
  }
  &.scheduled {
    background-color: #f5f5f5;
    color: #59bf59;
    text-shadow: 0 1px 0 rgba(255,255,255,.5);
  }
}

// Horizontal rules
hr {
  margin: 0 0 19px;
  border: 0;
  border-bottom: 1px solid #eee;
}

// Emphasis
strong {
  font-style: inherit;
  font-weight: bold;
  line-height: inherit;
}
em {
  font-style: italic;
  font-weight: inherit;
  line-height: inherit;
}
.muted {
170
  color: @grayLighter;
Jacob Thornton's avatar
Jacob Thornton committed
171
172
173
174
175
176
177
178
}

// Blockquotes
blockquote {
  margin-bottom: @baseline;
  border-left: 5px solid #eee;
  padding-left: 15px;
  p {
179
    #font > .shorthand(300,14px,@baseline);
Jacob Thornton's avatar
Jacob Thornton committed
180
181
182
183
    margin-bottom: 0;
  }
  cite {
    display: block;
184
185
    #font > .shorthand(300,12px,@baseline);
    color: @grayLight;
Jacob Thornton's avatar
Jacob Thornton committed
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
    &:before {
      content: '\2014 \00A0';
    }
  }
}

// Addresses
address {
  display: block;
  line-height: @baseline;
  margin-bottom: @baseline;
}

// Inline and block code styles
code, pre {
  padding: 0 3px 2px;
  font-family: Monaco, Andale Mono, Courier New, monospace;
  font-size: 12px;
  .border-radius(3px);
}
code {
  background-color: lighten(@orange, 40%);
  color: rgba(0,0,0,.75);
  padding: 2px 3px;
}
pre {
  background-color: #f5f5f5;
  display: block;
  padding: @baseline - 1;
  margin: 0 0 @baseline;
  line-height: @baseline;
  font-size: 12px;
  border: 1px solid rgba(0,0,0,.15);
  .border-radius(3px);
  white-space: pre-wrap;
}
// Code block styling from Chili
pre.css, pre.html {
  background-color: #fff;
}
pre ol {
  background-color: lighten(@orange, 42%);
  list-style: decimal;
  margin: (@baseline - 1) * -1;
  padding-left: 59px;
  .border-radius(2px);
  li {
    background-color: #fff;
    padding: 0 10px;
    border-left: 1px solid rgba(0,0,0,.1);
    border-left-color: lighten(@orange, 35%);
    font-size: 11px;
    line-height: @baseline;
239
    color: @grayLight;
Jacob Thornton's avatar
Jacob Thornton committed
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
    text-shadow: 0 1px 1px rgba(255,255,255,.5);
    word-wrap: break-word;
    &:hover {
    }
    &:first-child {
      padding-top: 9px;
    }
    &:last-child {
      padding-bottom: 9px;
    }
  }
}
// Language Styles
span.html__tag_start,
span.html__tag_end { color: #277ac1; font-weight: normal; }
span.html__attr_name { color: #d78b41; }
span.html__attr_value { color: #de4a3f; }