bootstrap-1.1.1.css 41 KB
Newer Older
Mark Otto's avatar
Mark Otto committed
1
/*!
Jacob Thornton's avatar
Jacob Thornton committed
2
 * Bootstrap v1.1.1
3
 *
Mark Otto's avatar
Mark Otto committed
4
 * Copyright 2011 Twitter, Inc
5
6
 * Licensed under the Apache License v2.0
 * http://www.apache.org/licenses/LICENSE-2.0
Mark Otto's avatar
Mark Otto committed
7
 *
8
 * Designed and built with all the love in the world @twitter by @mdo and @fat.
Jacob Thornton's avatar
blah    
Jacob Thornton committed
9
 * Date: Sun Aug 28 17:45:46 PDT 2011
10
 */
11
/* Reset.less
12
 * Props to Eric Meyer (meyerweb.com) for his CSS reset file. We're using an adapted version here	that cuts out some of the reset HTML elements we will never need here (i.e., dfn, samp, etc).
13
 * ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- */
Jacob Thornton's avatar
Jacob Thornton committed
14
15
16
17
18
19
20
21
22
23
24
25
26
27
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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
html, body {
  margin: 0;
  padding: 0;
}
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
cite,
code,
del,
dfn,
em,
img,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
dd,
dl,
dt,
li,
ol,
ul,
fieldset,
form,
label,
legend,
button,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td {
  margin: 0;
  padding: 0;
  border: 0;
  font-weight: normal;
  font-style: normal;
  font-size: 100%;
  line-height: 1;
  font-family: inherit;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}
ol, ul {
  list-style: none;
}
q:before,
q:after,
blockquote:before,
blockquote:after {
  content: "";
}
88
89
90
91
92
93
94
95
96
html {
  overflow-y: scroll;
  font-size: 100%;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
}
a:focus {
  outline: thin dotted;
}
97
article,
98
99
100
101
102
103
104
105
106
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
nav,
section {
107
108
  display: block;
}
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
170
171
172
173
audio, canvas, video {
  display: inline-block;
  *display: inline;
  *zoom: 1;
}
audio:not([controls]) {
  display: none;
}
sub, sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}
sup {
  top: -0.5em;
}
sub {
  bottom: -0.25em;
}
img {
  border: 0;
  -ms-interpolation-mode: bicubic;
}
button,
input,
select,
textarea {
  font-size: 100%;
  margin: 0;
  vertical-align: baseline;
  *vertical-align: middle;
}
button, input {
  line-height: normal;
  *overflow: visible;
}
button::-moz-focus-inner, input::-moz-focus-inner {
  border: 0;
  padding: 0;
}
button,
input[type="button"],
input[type="reset"],
input[type="submit"] {
  cursor: pointer;
  -webkit-appearance: button;
}
input[type="search"] {
  -webkit-appearance: textfield;
  -webkit-box-sizing: content-box;
  -moz-box-sizing: content-box;
  box-sizing: content-box;
}
input[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}
textarea {
  overflow: auto;
  vertical-align: top;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}
174
/* Preboot.less
175
 * Variables and mixins to pre-ignite any new web development project
176
 * ------------------------------------------------------------------ */
Jacob Thornton's avatar
Jacob Thornton committed
177
178
179
.clearfix {
  zoom: 1;
}
180
181
182
183
.clearfix:before, .clearfix:after {
  display: table;
  content: "";
}
Jacob Thornton's avatar
Jacob Thornton committed
184
185
186
.clearfix:after {
  clear: both;
}
187
188
189
.center-block {
  display: block;
  margin: 0 auto;
Jacob Thornton's avatar
Jacob Thornton committed
190
191
192
193
}
.container {
  width: 940px;
  margin: 0 auto;
194
  zoom: 1;
195
  margin-bottom: 18px;
196
}
197
198
199
200
.container:before, .container:after {
  display: table;
  content: "";
}
201
202
.container:after {
  clear: both;
Jacob Thornton's avatar
Jacob Thornton committed
203
}
204
.btn.danger,
205
.alert-message.danger,
206
.btn.danger:hover,
207
.alert-message.danger:hover,
208
.btn.error,
209
.alert-message.error,
210
.btn.error:hover,
211
.alert-message.error:hover,
212
.btn.success,
213
.alert-message.success,
214
.btn.success:hover,
215
.alert-message.success:hover,
216
.btn.info,
217
.alert-message.info,
218
.btn.info:hover,
219
.alert-message.info:hover {
220
221
222
  color: #ffffff;
}
.btn.danger,
223
.alert-message.danger,
224
.btn.error,
225
.alert-message.error {
226
  background-color: #c43c35;
227
  background-repeat: repeat-x;
228
  background-image: -khtml-gradient(linear, left top, left bottom, from(#ee5f5b), to(#c43c35));
Mark Otto's avatar
Mark Otto committed
229
230
  background-image: -moz-linear-gradient(top, #ee5f5b, #c43c35);
  background-image: -ms-linear-gradient(top, #ee5f5b, #c43c35);
231
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #ee5f5b), color-stop(100%, #c43c35));
Mark Otto's avatar
Mark Otto committed
232
233
234
  background-image: -webkit-linear-gradient(top, #ee5f5b, #c43c35);
  background-image: -o-linear-gradient(top, #ee5f5b, #c43c35);
  background-image: linear-gradient(top, #ee5f5b, #c43c35);
235
  text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
236
  border-color: #c43c35 #c43c35 #882a25;
237
238
  border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
}
239
.btn.success, .alert-message.success {
240
241
242
  background-color: #57a957;
  background-repeat: repeat-x;
  background-image: -khtml-gradient(linear, left top, left bottom, from(#62c462), to(#57a957));
Mark Otto's avatar
Mark Otto committed
243
244
  background-image: -moz-linear-gradient(top, #62c462, #57a957);
  background-image: -ms-linear-gradient(top, #62c462, #57a957);
245
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #62c462), color-stop(100%, #57a957));
Mark Otto's avatar
Mark Otto committed
246
247
248
  background-image: -webkit-linear-gradient(top, #62c462, #57a957);
  background-image: -o-linear-gradient(top, #62c462, #57a957);
  background-image: linear-gradient(top, #62c462, #57a957);
249
250
251
252
  text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
  border-color: #57a957 #57a957 #3d773d;
  border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
}
253
.btn.info, .alert-message.info {
254
  background-color: #339bb9;
255
  background-repeat: repeat-x;
256
  background-image: -khtml-gradient(linear, left top, left bottom, from(#5bc0de), to(#339bb9));
Mark Otto's avatar
Mark Otto committed
257
258
  background-image: -moz-linear-gradient(top, #5bc0de, #339bb9);
  background-image: -ms-linear-gradient(top, #5bc0de, #339bb9);
259
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #5bc0de), color-stop(100%, #339bb9));
Mark Otto's avatar
Mark Otto committed
260
261
262
  background-image: -webkit-linear-gradient(top, #5bc0de, #339bb9);
  background-image: -o-linear-gradient(top, #5bc0de, #339bb9);
  background-image: linear-gradient(top, #5bc0de, #339bb9);
263
  text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
264
  border-color: #339bb9 #339bb9 #22697d;
265
266
  border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
}
267
268
/*
 * Scaffolding
269
 * Basic and global styles for generating a grid system, structural layout, and page templates
270
 * ------------------------------------------------------------------------------------------- */
271
.row {
Jacob Thornton's avatar
Jacob Thornton committed
272
  zoom: 1;
273
  margin-bottom: 18px;
274
  margin-left: -20px;
Jacob Thornton's avatar
Jacob Thornton committed
275
}
276
277
278
279
.row:before, .row:after {
  display: table;
  content: "";
}
280
.row:after {
Jacob Thornton's avatar
Jacob Thornton committed
281
282
  clear: both;
}
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
.row .span1,
.row .span2,
.row .span3,
.row .span4,
.row .span5,
.row .span6,
.row .span7,
.row .span8,
.row .span9,
.row .span10,
.row .span11,
.row .span12,
.row .span13,
.row .span14,
.row .span15,
.row .span16 {
299
  display: inline;
Jacob Thornton's avatar
Jacob Thornton committed
300
301
302
  float: left;
  margin-left: 20px;
}
303
304
.row .span1 {
  width: 40px;
Jacob Thornton's avatar
Jacob Thornton committed
305
}
306
.row .span2 {
Jacob Thornton's avatar
Jacob Thornton committed
307
308
  width: 100px;
}
309
.row .span3 {
Jacob Thornton's avatar
Jacob Thornton committed
310
311
  width: 160px;
}
312
.row .span4 {
Jacob Thornton's avatar
Jacob Thornton committed
313
314
  width: 220px;
}
315
.row .span5 {
Jacob Thornton's avatar
Jacob Thornton committed
316
317
  width: 280px;
}
318
.row .span6 {
Jacob Thornton's avatar
Jacob Thornton committed
319
320
  width: 340px;
}
321
.row .span7 {
Jacob Thornton's avatar
Jacob Thornton committed
322
323
  width: 400px;
}
324
.row .span8 {
Jacob Thornton's avatar
Jacob Thornton committed
325
326
  width: 460px;
}
327
.row .span9 {
Jacob Thornton's avatar
Jacob Thornton committed
328
329
  width: 520px;
}
330
.row .span10 {
Jacob Thornton's avatar
Jacob Thornton committed
331
332
  width: 580px;
}
333
.row .span11 {
Jacob Thornton's avatar
Jacob Thornton committed
334
335
  width: 640px;
}
336
.row .span12 {
Jacob Thornton's avatar
Jacob Thornton committed
337
338
  width: 700px;
}
339
.row .span13 {
Jacob Thornton's avatar
Jacob Thornton committed
340
341
  width: 760px;
}
342
.row .span14 {
Jacob Thornton's avatar
Jacob Thornton committed
343
344
  width: 820px;
}
345
.row .span15 {
Jacob Thornton's avatar
Jacob Thornton committed
346
347
  width: 880px;
}
348
.row .span16 {
Jacob Thornton's avatar
Jacob Thornton committed
349
350
  width: 940px;
}
351
.row .offset1 {
352
  margin-left: 80px;
353
354
}
.row .offset2 {
355
  margin-left: 140px;
356
357
}
.row .offset3 {
358
  margin-left: 200px;
359
360
}
.row .offset4 {
361
  margin-left: 260px;
362
363
}
.row .offset5 {
364
  margin-left: 320px;
365
366
}
.row .offset6 {
367
  margin-left: 380px;
368
369
}
.row .offset7 {
370
  margin-left: 440px;
371
372
}
.row .offset8 {
373
  margin-left: 500px;
374
375
}
.row .offset9 {
376
  margin-left: 560px;
377
378
}
.row .offset10 {
379
  margin-left: 620px;
380
381
}
.row .offset11 {
382
  margin-left: 680px;
383
384
}
.row .offset12 {
385
  margin-left: 740px;
386
}
Jacob Thornton's avatar
Jacob Thornton committed
387
388
389
390
html, body {
  background-color: #fff;
}
body {
391
  margin: 0;
Jacob Thornton's avatar
Jacob Thornton committed
392
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
393
  font-size: 13px;
Jacob Thornton's avatar
Jacob Thornton committed
394
  font-weight: normal;
395
  line-height: 18px;
396
  color: #808080;
Jacob Thornton's avatar
Jacob Thornton committed
397
398
  text-rendering: optimizeLegibility;
}
Mark Otto's avatar
Mark Otto committed
399
.container {
Jacob Thornton's avatar
Jacob Thornton committed
400
401
402
  width: 940px;
  margin: 0 auto;
}
Mark Otto's avatar
Mark Otto committed
403
.container-fluid {
404
  padding: 0 20px;
Jacob Thornton's avatar
Jacob Thornton committed
405
  zoom: 1;
406
  margin-bottom: 18px;
Jacob Thornton's avatar
Jacob Thornton committed
407
}
Mark Otto's avatar
Mark Otto committed
408
.container-fluid:before, .container-fluid:after {
409
410
411
  display: table;
  content: "";
}
Mark Otto's avatar
Mark Otto committed
412
.container-fluid:after {
Jacob Thornton's avatar
Jacob Thornton committed
413
414
  clear: both;
}
Mark Otto's avatar
Mark Otto committed
415
.container-fluid .sidebar {
Jacob Thornton's avatar
Jacob Thornton committed
416
417
418
  float: left;
  width: 220px;
}
Mark Otto's avatar
Mark Otto committed
419
.container-fluid .content {
Jacob Thornton's avatar
Jacob Thornton committed
420
421
422
423
  min-width: 700px;
  max-width: 1180px;
  margin-left: 240px;
}
424
425
426
427
428
429
.hide {
  display: none;
}
.show {
  display: block;
}
Jacob Thornton's avatar
Jacob Thornton committed
430
431
432
433
a {
  color: #0069d6;
  text-decoration: none;
  line-height: inherit;
434
  font-weight: inherit;
Jacob Thornton's avatar
Jacob Thornton committed
435
436
437
438
439
}
a:hover {
  color: #0050a3;
  text-decoration: underline;
}
440
/* Typography.less
441
 * Headings, body text, lists, code, and more for a versatile and durable typography system
442
 * ---------------------------------------------------------------------------------------- */
Jacob Thornton's avatar
Jacob Thornton committed
443
p {
444
  font-size: 13px;
Jacob Thornton's avatar
Jacob Thornton committed
445
  font-weight: normal;
446
  line-height: 18px;
447
  margin-bottom: 9px;
Jacob Thornton's avatar
Jacob Thornton committed
448
449
}
p small {
450
  font-size: 11px;
Mark Otto's avatar
Mark Otto committed
451
  color: #bfbfbf;
Jacob Thornton's avatar
Jacob Thornton committed
452
453
454
455
456
457
458
}
h1,
h2,
h3,
h4,
h5,
h6 {
459
  font-weight: bold;
460
  color: #404040;
Jacob Thornton's avatar
Jacob Thornton committed
461
462
463
464
465
466
467
}
h1 small,
h2 small,
h3 small,
h4 small,
h5 small,
h6 small {
Mark Otto's avatar
Mark Otto committed
468
  color: #bfbfbf;
Jacob Thornton's avatar
Jacob Thornton committed
469
470
}
h1 {
471
  margin-bottom: 18px;
Jacob Thornton's avatar
Jacob Thornton committed
472
  font-size: 30px;
473
  line-height: 36px;
Jacob Thornton's avatar
Jacob Thornton committed
474
475
476
477
478
479
}
h1 small {
  font-size: 18px;
}
h2 {
  font-size: 24px;
480
  line-height: 36px;
Jacob Thornton's avatar
Jacob Thornton committed
481
482
483
484
485
486
487
488
}
h2 small {
  font-size: 14px;
}
h3,
h4,
h5,
h6 {
489
  line-height: 36px;
Jacob Thornton's avatar
Jacob Thornton committed
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
}
h3 {
  font-size: 18px;
}
h3 small {
  font-size: 14px;
}
h4 {
  font-size: 16px;
}
h4 small {
  font-size: 12px;
}
h5 {
  font-size: 14px;
}
h6 {
  font-size: 13px;
Mark Otto's avatar
Mark Otto committed
508
  color: #bfbfbf;
Jacob Thornton's avatar
Jacob Thornton committed
509
510
511
  text-transform: uppercase;
}
ul, ol {
512
  margin: 0 0 18px 25px;
Jacob Thornton's avatar
Jacob Thornton committed
513
514
515
516
517
518
519
520
521
522
523
524
525
526
}
ul ul,
ul ol,
ol ol,
ol ul {
  margin-bottom: 0;
}
ul {
  list-style: disc;
}
ol {
  list-style: decimal;
}
li {
527
  line-height: 18px;
528
  color: #808080;
Jacob Thornton's avatar
Jacob Thornton committed
529
530
531
532
533
534
}
ul.unstyled {
  list-style: none;
  margin-left: 0;
}
dl {
535
  margin-bottom: 18px;
Jacob Thornton's avatar
Jacob Thornton committed
536
537
}
dl dt, dl dd {
538
  line-height: 18px;
Jacob Thornton's avatar
Jacob Thornton committed
539
540
541
542
543
}
dl dt {
  font-weight: bold;
}
dl dd {
544
  margin-left: 9px;
Jacob Thornton's avatar
Jacob Thornton committed
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
}
hr {
  margin: 0 0 19px;
  border: 0;
  border-bottom: 1px solid #eee;
}
strong {
  font-style: inherit;
  font-weight: bold;
  line-height: inherit;
}
em {
  font-style: italic;
  font-weight: inherit;
  line-height: inherit;
}
.muted {
562
  color: #bfbfbf;
Jacob Thornton's avatar
Jacob Thornton committed
563
564
}
blockquote {
565
  margin-bottom: 18px;
Jacob Thornton's avatar
Jacob Thornton committed
566
567
568
569
570
571
  border-left: 5px solid #eee;
  padding-left: 15px;
}
blockquote p {
  font-size: 14px;
  font-weight: 300;
572
  line-height: 18px;
Jacob Thornton's avatar
Jacob Thornton committed
573
574
  margin-bottom: 0;
}
575
blockquote small {
Jacob Thornton's avatar
Jacob Thornton committed
576
577
578
  display: block;
  font-size: 12px;
  font-weight: 300;
579
  line-height: 18px;
Mark Otto's avatar
Mark Otto committed
580
  color: #bfbfbf;
Jacob Thornton's avatar
Jacob Thornton committed
581
}
582
blockquote small:before {
Jacob Thornton's avatar
Jacob Thornton committed
583
584
585
586
  content: '\2014 \00A0';
}
address {
  display: block;
587
588
  line-height: 18px;
  margin-bottom: 18px;
Jacob Thornton's avatar
Jacob Thornton committed
589
590
591
592
593
}
code, pre {
  padding: 0 3px 2px;
  font-family: Monaco, Andale Mono, Courier New, monospace;
  font-size: 12px;
594
  -webkit-border-radius: 3px;
Jacob Thornton's avatar
Jacob Thornton committed
595
596
597
598
599
600
  -moz-border-radius: 3px;
  border-radius: 3px;
}
code {
  background-color: #fee9cc;
  color: rgba(0, 0, 0, 0.75);
Mark Otto's avatar
Mark Otto committed
601
  padding: 1px 3px;
Jacob Thornton's avatar
Jacob Thornton committed
602
603
604
605
}
pre {
  background-color: #f5f5f5;
  display: block;
606
607
608
  padding: 17px;
  margin: 0 0 18px;
  line-height: 18px;
Jacob Thornton's avatar
Jacob Thornton committed
609
  font-size: 12px;
610
  border: 1px solid #ccc;
Jacob Thornton's avatar
Jacob Thornton committed
611
  border: 1px solid rgba(0, 0, 0, 0.15);
612
  -webkit-border-radius: 3px;
Jacob Thornton's avatar
Jacob Thornton committed
613
614
  -moz-border-radius: 3px;
  border-radius: 3px;
615
  white-space: pre;
Jacob Thornton's avatar
Jacob Thornton committed
616
  white-space: pre-wrap;
617
  word-wrap: break-word;
Jacob Thornton's avatar
Jacob Thornton committed
618
}
619
/* Forms.less
620
 * Base styles for various input types, form layouts, and states
621
 * ------------------------------------------------------------- */
Jacob Thornton's avatar
Jacob Thornton committed
622
form {
623
  margin-bottom: 18px;
Jacob Thornton's avatar
Jacob Thornton committed
624
}
625
fieldset {
626
627
  margin-bottom: 18px;
  padding-top: 18px;
Jacob Thornton's avatar
Jacob Thornton committed
628
}
629
fieldset legend {
Jacob Thornton's avatar
Jacob Thornton committed
630
631
632
633
  display: block;
  margin-left: 150px;
  font-size: 20px;
  line-height: 1;
Jacob Thornton's avatar
Jacob Thornton committed
634
635
636
637
638
639
  *margin: 0 0 5px 145px;
  /* IE6-7 */

  *line-height: 1.5;
  /* IE6-7 */

640
  color: #404040;
Jacob Thornton's avatar
Jacob Thornton committed
641
}
642
.clearfix {
643
  margin-bottom: 18px;
Jacob Thornton's avatar
Jacob Thornton committed
644
}
645
646
647
648
label,
input,
select,
textarea {
Jacob Thornton's avatar
Jacob Thornton committed
649
650
651
652
653
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 13px;
  font-weight: normal;
  line-height: normal;
}
654
label {
Jacob Thornton's avatar
Jacob Thornton committed
655
656
657
658
659
660
  padding-top: 6px;
  font-size: 13px;
  line-height: 18px;
  float: left;
  width: 130px;
  text-align: right;
661
  color: #404040;
Jacob Thornton's avatar
Jacob Thornton committed
662
}
663
div.input {
Jacob Thornton's avatar
Jacob Thornton committed
664
665
  margin-left: 150px;
}
666
input[type=checkbox], input[type=radio] {
Jacob Thornton's avatar
Jacob Thornton committed
667
668
  cursor: pointer;
}
669
670
671
672
673
input[type=text],
input[type=password],
textarea,
select,
.uneditable-input {
674
  display: inline-block;
Jacob Thornton's avatar
Jacob Thornton committed
675
676
677
  width: 210px;
  padding: 4px;
  font-size: 13px;
678
679
  line-height: 18px;
  height: 18px;
680
  color: #808080;
681
  border: 1px solid #ccc;
682
  -webkit-border-radius: 3px;
Jacob Thornton's avatar
Jacob Thornton committed
683
684
685
  -moz-border-radius: 3px;
  border-radius: 3px;
}
686
select, input[type=file] {
687
688
  height: 27px;
  line-height: 27px;
Jacob Thornton's avatar
Jacob Thornton committed
689
}
690
textarea {
Jacob Thornton's avatar
Jacob Thornton committed
691
692
  height: auto;
}
693
.uneditable-input {
Jacob Thornton's avatar
Jacob Thornton committed
694
695
696
697
698
699
700
  background-color: #eee;
  display: block;
  border-color: #ccc;
  -webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.075);
  -moz-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.075);
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.075);
}
701
:-moz-placeholder {
702
703
  color: #bfbfbf;
}
704
::-webkit-input-placeholder {
705
706
  color: #bfbfbf;
}
707
708
709
710
input[type=text],
input[type=password],
select,
textarea {
Jacob Thornton's avatar
Jacob Thornton committed
711
712
  -webkit-transition: border linear 0.2s, box-shadow linear 0.2s;
  -moz-transition: border linear 0.2s, box-shadow linear 0.2s;
Jacob Thornton's avatar
Jacob Thornton committed
713
714
  -ms-transition: border linear 0.2s, box-shadow linear 0.2s;
  -o-transition: border linear 0.2s, box-shadow linear 0.2s;
Jacob Thornton's avatar
Jacob Thornton committed
715
  transition: border linear 0.2s, box-shadow linear 0.2s;
716
717
718
  -webkit-box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.1);
  box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.1);
Jacob Thornton's avatar
Jacob Thornton committed
719
}
720
input[type=text]:focus, input[type=password]:focus, textarea:focus {
Jacob Thornton's avatar
Jacob Thornton committed
721
  outline: none;
722
723
724
725
  border-color: rgba(82, 168, 236, 0.8);
  -webkit-box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.1), 0 0 8px rgba(82, 168, 236, 0.6);
  -moz-box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.1), 0 0 8px rgba(82, 168, 236, 0.6);
  box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.1), 0 0 8px rgba(82, 168, 236, 0.6);
Jacob Thornton's avatar
Jacob Thornton committed
726
}
Mark Otto's avatar
Mark Otto committed
727
form div.error {
Jacob Thornton's avatar
Jacob Thornton committed
728
729
730
  background: #fae5e3;
  padding: 10px 0;
  margin: -10px 0 10px;
731
  -webkit-border-radius: 4px;
Jacob Thornton's avatar
Jacob Thornton committed
732
733
734
  -moz-border-radius: 4px;
  border-radius: 4px;
}
Mark Otto's avatar
Mark Otto committed
735
form div.error > label, form div.error span.help-inline, form div.error span.help-block {
Jacob Thornton's avatar
Jacob Thornton committed
736
737
  color: #9d261d;
}
Mark Otto's avatar
Mark Otto committed
738
form div.error input[type=text], form div.error input[type=password], form div.error textarea {
Jacob Thornton's avatar
Jacob Thornton committed
739
740
741
742
743
  border-color: #c87872;
  -webkit-box-shadow: 0 0 3px rgba(171, 41, 32, 0.25);
  -moz-box-shadow: 0 0 3px rgba(171, 41, 32, 0.25);
  box-shadow: 0 0 3px rgba(171, 41, 32, 0.25);
}
Mark Otto's avatar
Mark Otto committed
744
form div.error input[type=text]:focus, form div.error input[type=password]:focus, form div.error textarea:focus {
Jacob Thornton's avatar
Jacob Thornton committed
745
746
747
748
749
  border-color: #b9554d;
  -webkit-box-shadow: 0 0 6px rgba(171, 41, 32, 0.5);
  -moz-box-shadow: 0 0 6px rgba(171, 41, 32, 0.5);
  box-shadow: 0 0 6px rgba(171, 41, 32, 0.5);
}
Mark Otto's avatar
Mark Otto committed
750
form div.error .input-prepend span.add-on, form div.error .input-append span.add-on {
Jacob Thornton's avatar
Jacob Thornton committed
751
752
753
754
  background: #f4c8c5;
  border-color: #c87872;
  color: #b9554d;
}
755
756
757
758
.input-mini,
input.mini,
textarea.mini,
select.mini {
Jacob Thornton's avatar
Jacob Thornton committed
759
760
  width: 60px;
}
761
762
763
764
.input-small,
input.small,
textarea.small,
select.small {
Jacob Thornton's avatar
Jacob Thornton committed
765
766
  width: 90px;
}
767
768
769
770
.input-medium,
input.medium,
textarea.medium,
select.medium {
Jacob Thornton's avatar
Jacob Thornton committed
771
772
  width: 150px;
}
773
774
775
776
.input-large,
input.large,
textarea.large,
select.large {
Jacob Thornton's avatar
Jacob Thornton committed
777
778
  width: 210px;
}
779
780
781
782
.input-xlarge,
input.xlarge,
textarea.xlarge,
select.xlarge {
Jacob Thornton's avatar
Jacob Thornton committed
783
784
  width: 270px;
}
785
786
787
788
.input-xxlarge,
input.xxlarge,
textarea.xxlarge,
select.xxlarge {
Jacob Thornton's avatar
Jacob Thornton committed
789
790
  width: 530px;
}
791
textarea.xxlarge {
Jacob Thornton's avatar
Jacob Thornton committed
792
793
  overflow-y: scroll;
}
794
input[readonly]:focus, textarea[readonly]:focus, input.disabled {
Jacob Thornton's avatar
Jacob Thornton committed
795
796
797
798
799
800
  background: #f5f5f5;
  border-color: #ddd;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
}
Mark Otto's avatar
Mark Otto committed
801
.actions {
Jacob Thornton's avatar
Jacob Thornton committed
802
  background: #f5f5f5;
803
804
805
  margin-top: 18px;
  margin-bottom: 18px;
  padding: 17px 20px 18px 150px;
Jacob Thornton's avatar
Jacob Thornton committed
806
  border-top: 1px solid #ddd;
807
  -webkit-border-radius: 0 0 3px 3px;
Jacob Thornton's avatar
Jacob Thornton committed
808
809
810
  -moz-border-radius: 0 0 3px 3px;
  border-radius: 0 0 3px 3px;
}
Mark Otto's avatar
Mark Otto committed
811
.actions .secondary-action {
Jacob Thornton's avatar
Jacob Thornton committed
812
813
  float: right;
}
Mark Otto's avatar
Mark Otto committed
814
.actions .secondary-action a {
Jacob Thornton's avatar
Jacob Thornton committed
815
816
  line-height: 30px;
}
Mark Otto's avatar
Mark Otto committed
817
.actions .secondary-action a:hover {
Jacob Thornton's avatar
Jacob Thornton committed
818
819
820
821
  text-decoration: underline;
}
.help-inline, .help-block {
  font-size: 12px;
822
  line-height: 18px;
Mark Otto's avatar
Mark Otto committed
823
  color: #bfbfbf;
Jacob Thornton's avatar
Jacob Thornton committed
824
825
826
}
.help-inline {
  padding-left: 5px;
Jacob Thornton's avatar
Jacob Thornton committed
827
828
829
830
831
832
  *position: relative;
  /* IE6-7 */

  *top: -5px;
  /* IE6-7 */

Jacob Thornton's avatar
Jacob Thornton committed
833
834
835
836
837
}
.help-block {
  display: block;
  max-width: 600px;
}
Mark Otto's avatar
Mark Otto committed
838
.inline-inputs {
839
  color: #808080;
Jacob Thornton's avatar
Jacob Thornton committed
840
}
Mark Otto's avatar
Mark Otto committed
841
.inline-inputs span, .inline-inputs input[type=text] {
Jacob Thornton's avatar
Jacob Thornton committed
842
843
  display: inline-block;
}
Mark Otto's avatar
Mark Otto committed
844
.inline-inputs input.mini {
Jacob Thornton's avatar
Jacob Thornton committed
845
846
  width: 60px;
}
Mark Otto's avatar
Mark Otto committed
847
.inline-inputs input.small {
Jacob Thornton's avatar
Jacob Thornton committed
848
849
  width: 90px;
}
Mark Otto's avatar
Mark Otto committed
850
.inline-inputs span {
Jacob Thornton's avatar
Jacob Thornton committed
851
852
  padding: 0 2px 0 1px;
}
853
854
855
856
.input-prepend input[type=text],
.input-append input[type=text],
.input-prepend input[type=password],
.input-append input[type=password] {
857
  -webkit-border-radius: 0 3px 3px 0;
Jacob Thornton's avatar
Jacob Thornton committed
858
859
860
  -moz-border-radius: 0 3px 3px 0;
  border-radius: 0 3px 3px 0;
}
Mark Otto's avatar
Mark Otto committed
861
.input-prepend .add-on, .input-append .add-on {
Jacob Thornton's avatar
Jacob Thornton committed
862
863
864
865
866
  background: #f5f5f5;
  float: left;
  display: block;
  width: auto;
  min-width: 16px;
867
  padding: 4px 4px 4px 5px;
Mark Otto's avatar
Mark Otto committed
868
  color: #bfbfbf;
Jacob Thornton's avatar
Jacob Thornton committed
869
870
871
872
873
  font-weight: normal;
  line-height: 18px;
  height: 18px;
  text-align: center;
  text-shadow: 0 1px 0 #fff;
874
  border: 1px solid #ccc;
Jacob Thornton's avatar
Jacob Thornton committed
875
  border-right-width: 0;
876
  -webkit-border-radius: 3px 0 0 3px;
Jacob Thornton's avatar
Jacob Thornton committed
877
878
879
  -moz-border-radius: 3px 0 0 3px;
  border-radius: 3px 0 0 3px;
}
Mark Otto's avatar
Mark Otto committed
880
.input-prepend .active, .input-append .active {
Jacob Thornton's avatar
Jacob Thornton committed
881
882
883
  background: #a9dba9;
  border-color: #46a546;
}
Jacob Thornton's avatar
Jacob Thornton committed
884
885
886
887
888
.input-prepend .add-on {
  *margin-top: 1px;
  /* IE6-7 */

}
889
.input-append input[type=text], .input-append input[type=password] {
Jacob Thornton's avatar
Jacob Thornton committed
890
  float: left;
891
  -webkit-border-radius: 3px 0 0 3px;
Jacob Thornton's avatar
Jacob Thornton committed
892
893
894
  -moz-border-radius: 3px 0 0 3px;
  border-radius: 3px 0 0 3px;
}
Mark Otto's avatar
Mark Otto committed
895
.input-append .add-on {
896
  -webkit-border-radius: 0 3px 3px 0;
Jacob Thornton's avatar
Jacob Thornton committed
897
898
899
900
901
  -moz-border-radius: 0 3px 3px 0;
  border-radius: 0 3px 3px 0;
  border-right-width: 1px;
  border-left-width: 0;
}
Mark Otto's avatar
Mark Otto committed
902
.inputs-list {
Jacob Thornton's avatar
Jacob Thornton committed
903
904
905
  margin: 0 0 5px;
  width: 100%;
}
Mark Otto's avatar
Mark Otto committed
906
.inputs-list li {
Jacob Thornton's avatar
Jacob Thornton committed
907
908
909
910
  display: block;
  padding: 0;
  width: 100%;
}
Mark Otto's avatar
Mark Otto committed
911
.inputs-list li label {
Jacob Thornton's avatar
Jacob Thornton committed
912
913
914
915
  display: block;
  float: none;
  width: auto;
  padding: 0;
916
  line-height: 18px;
Jacob Thornton's avatar
Jacob Thornton committed
917
918
919
  text-align: left;
  white-space: normal;
}
Mark Otto's avatar
Mark Otto committed
920
.inputs-list li label strong {
921
  color: #808080;
Jacob Thornton's avatar
Jacob Thornton committed
922
}
Mark Otto's avatar
Mark Otto committed
923
.inputs-list li label small {
Jacob Thornton's avatar
Jacob Thornton committed
924
  font-size: 12px;
925
  font-weight: normal;
Jacob Thornton's avatar
Jacob Thornton committed
926
}
Mark Otto's avatar
Mark Otto committed
927
.inputs-list li ul.inputs-list {
Jacob Thornton's avatar
Jacob Thornton committed
928
929
930
931
  margin-left: 25px;
  margin-bottom: 10px;
  padding-top: 0;
}
Mark Otto's avatar
Mark Otto committed
932
.inputs-list li:first-child {
Jacob Thornton's avatar
Jacob Thornton committed
933
934
  padding-top: 5px;
}
Mark Otto's avatar
Mark Otto committed
935
.inputs-list input[type=radio], .inputs-list input[type=checkbox] {
Jacob Thornton's avatar
Jacob Thornton committed
936
937
  margin-bottom: 0;
}
938
.form-stacked {
939
940
  padding-left: 20px;
}
941
.form-stacked fieldset {
942
  padding-top: 9px;
Jacob Thornton's avatar
Jacob Thornton committed
943
}
944
.form-stacked legend {
Jacob Thornton's avatar
Jacob Thornton committed
945
946
  margin-left: 0;
}
947
.form-stacked label {
Jacob Thornton's avatar
Jacob Thornton committed
948
949
950
951
952
953
954
955
  display: block;
  float: none;
  width: auto;
  font-weight: bold;
  text-align: left;
  line-height: 20px;
  padding-top: 0;
}
956
.form-stacked .clearfix {
957
  margin-bottom: 9px;
Jacob Thornton's avatar
Jacob Thornton committed
958
}
959
.form-stacked .clearfix div.input {
Jacob Thornton's avatar
Jacob Thornton committed
960
961
  margin-left: 0;
}
962
.form-stacked .inputs-list {
Jacob Thornton's avatar
Jacob Thornton committed
963
964
  margin-bottom: 0;
}
965
.form-stacked .inputs-list li {
Jacob Thornton's avatar
Jacob Thornton committed
966
967
  padding-top: 0;
}
968
.form-stacked .inputs-list li label {
Jacob Thornton's avatar
Jacob Thornton committed
969
970
971
  font-weight: normal;
  padding-top: 0;
}
972
.form-stacked div.error {
973
974
975
976
977
978
  padding-top: 10px;
  padding-bottom: 10px;
  padding-left: 10px;
  margin-top: 0;
  margin-left: -10px;
}
979
.form-stacked .actions {
980
981
982
  margin-left: -20px;
  padding-left: 20px;
}
983
984
/*
 * Tables.less
985
 * Tables for, you guessed it, tabular data
986
 * ---------------------------------------- */
Jacob Thornton's avatar
Jacob Thornton committed
987
988
table {
  width: 100%;
989
  margin-bottom: 18px;
Jacob Thornton's avatar
Jacob Thornton committed
990
991
  padding: 0;
  border-collapse: separate;
992
  font-size: 13px;
Jacob Thornton's avatar
Jacob Thornton committed
993
994
995
}
table th, table td {
  padding: 10px 10px 9px;
996
  line-height: 13.5px;
997
  text-align: left;
Jacob Thornton's avatar
Jacob Thornton committed
998
999
1000
  vertical-align: middle;
  border-bottom: 1px solid #ddd;
}
For faster browsing, not all history is shown. View entire blame