bootstrap.css 54.3 KB
Newer Older
Mark Otto's avatar
Mark Otto committed
1
/*!
Jacob Thornton's avatar
Jacob Thornton committed
2
 * Bootstrap v1.2.0
Mark Otto's avatar
Mark Otto committed
3
4
5
6
7
8
 *
 * Copyright 2011 Twitter, Inc
 * Licensed under the Apache License v2.0
 * http://www.apache.org/licenses/LICENSE-2.0
 *
 * Designed and built with all the love in the world @twitter by @mdo and @fat.
9
 * Date: Mon Oct 17 14:16:58 PDT 2011
Mark Otto's avatar
Mark Otto committed
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).
Mark Otto's avatar
Mark Otto committed
13
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
88
89
90
91
92
93
94
95
96
 * ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- */
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: "";
}
html {
  overflow-y: scroll;
  font-size: 100%;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
}
a:focus {
  outline: thin dotted;
}
97
98
99
a:hover, a:active {
  outline: 0;
}
Mark Otto's avatar
Mark Otto committed
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
170
171
172
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
nav,
section {
  display: block;
}
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;
}
173
174
175
/* Variables.less
 * Variables to customize the look and feel of Bootstrap
 * ----------------------------------------------------- */
176
/* Mixins.less
177
 * Snippets of reusable CSS to develop faster and keep code readable
178
 * ----------------------------------------------------------------- */
Mark Otto's avatar
Mark Otto committed
179
180
181
182
/*
 * Scaffolding
 * Basic and global styles for generating a grid system, structural layout, and page templates
 * ------------------------------------------------------------------------------------------- */
183
html, body {
184
  background-color: #ffffff;
185
186
187
188
189
190
}
body {
  margin: 0;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 13px;
  line-height: 18px;
191
  color: #404040;
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
}
.container {
  width: 940px;
  margin-left: auto;
  margin-right: auto;
  zoom: 1;
}
.container:before, .container:after {
  display: table;
  content: "";
  zoom: 1;
  *display: inline;
}
.container:after {
  clear: both;
}
208
.fluid-container {
209
  position: relative;
Mark Otto's avatar
Mark Otto committed
210
  min-width: 940px;
211
212
213
214
  padding-left: 20px;
  padding-right: 20px;
  zoom: 1;
}
215
.fluid-container:before, .fluid-container:after {
216
217
218
219
220
  display: table;
  content: "";
  zoom: 1;
  *display: inline;
}
221
.fluid-container:after {
222
223
  clear: both;
}
224
.fluid-sidebar-left, .fluid-sidebar-right {
225
226
  width: 220px;
}
227
228
229
230
231
232
233
.fluid-sidebar-left {
  float: left;
}
.fluid-sidebar-right {
  float: right;
}
.fluid-content {
Mark Otto's avatar
Mark Otto committed
234
  margin-left: 240px;
235
}
236
237
238
239
.fluid-container.reverse .fluid-content {
  margin-left: 0;
  margin-right: 240px;
}
240
241
242
243
244
245
246
a {
  color: #0069d6;
  text-decoration: none;
  line-height: inherit;
  font-weight: inherit;
}
a:hover {
247
  color: #00438a;
248
249
250
251
252
253
254
255
  text-decoration: underline;
}
.pull-right {
  float: right;
}
.pull-left {
  float: left;
}
Mark Otto's avatar
Mark Otto committed
256
257
258
259
260
261
.hide {
  display: none;
}
.show {
  display: block;
}
Mark Otto's avatar
Mark Otto committed
262
.row {
263
  margin-left: -20px;
Mark Otto's avatar
Mark Otto committed
264
265
266
267
268
  zoom: 1;
}
.row:before, .row:after {
  display: table;
  content: "";
269
270
  zoom: 1;
  *display: inline;
Mark Otto's avatar
Mark Otto committed
271
272
273
274
}
.row:after {
  clear: both;
}
275
[class*="span"] {
Mark Otto's avatar
Mark Otto committed
276
277
278
279
  display: inline;
  float: left;
  margin-left: 20px;
}
280
.span1 {
281
  width: 60px;
Mark Otto's avatar
Mark Otto committed
282
}
283
.span2 {
284
  width: 140px;
Mark Otto's avatar
Mark Otto committed
285
}
286
.span3 {
287
  width: 220px;
Mark Otto's avatar
Mark Otto committed
288
}
289
.span4 {
290
  width: 300px;
Mark Otto's avatar
Mark Otto committed
291
}
292
.span5 {
293
  width: 380px;
Mark Otto's avatar
Mark Otto committed
294
}
295
.span6 {
296
  width: 460px;
Mark Otto's avatar
Mark Otto committed
297
}
298
.span7 {
299
  width: 540px;
Mark Otto's avatar
Mark Otto committed
300
}
301
.span8 {
302
  width: 620px;
Mark Otto's avatar
Mark Otto committed
303
}
304
.span9 {
305
  width: 700px;
Mark Otto's avatar
Mark Otto committed
306
}
307
.span10 {
308
  width: 780px;
Mark Otto's avatar
Mark Otto committed
309
}
310
.span11 {
311
  width: 860px;
Mark Otto's avatar
Mark Otto committed
312
}
313
.span12 {
Mark Otto's avatar
Mark Otto committed
314
315
  width: 940px;
}
316
.offset1 {
317
  margin-left: 100px;
Mark Otto's avatar
Mark Otto committed
318
}
319
.offset2 {
320
  margin-left: 180px;
Mark Otto's avatar
Mark Otto committed
321
}
322
.offset3 {
323
  margin-left: 260px;
Mark Otto's avatar
Mark Otto committed
324
}
325
.offset4 {
326
  margin-left: 340px;
Mark Otto's avatar
Mark Otto committed
327
}
328
.offset5 {
329
  margin-left: 420px;
Mark Otto's avatar
Mark Otto committed
330
}
331
.offset6 {
332
  margin-left: 500px;
Mark Otto's avatar
Mark Otto committed
333
}
334
.offset7 {
335
  margin-left: 580px;
Mark Otto's avatar
Mark Otto committed
336
}
337
.offset8 {
338
  margin-left: 660px;
Mark Otto's avatar
Mark Otto committed
339
}
340
.offset9 {
341
  margin-left: 740px;
Mark Otto's avatar
Mark Otto committed
342
}
343
.offset10 {
344
  margin-left: 820px;
Mark Otto's avatar
Mark Otto committed
345
}
346
.offset11 {
347
  margin-left: 900px;
Mark Otto's avatar
Mark Otto committed
348
349
350
351
352
}
/* Typography.less
 * Headings, body text, lists, code, and more for a versatile and durable typography system
 * ---------------------------------------------------------------------------------------- */
p {
353
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
Mark Otto's avatar
Mark Otto committed
354
355
356
357
358
359
  font-size: 13px;
  line-height: 18px;
  margin-bottom: 9px;
}
p small {
  font-size: 11px;
360
  color: #bfbfbf;
Mark Otto's avatar
Mark Otto committed
361
362
363
364
365
366
367
368
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: bold;
369
  color: #404040;
370
  text-rendering: optimizelegibility;
Mark Otto's avatar
Mark Otto committed
371
372
373
374
375
376
377
}
h1 small,
h2 small,
h3 small,
h4 small,
h5 small,
h6 small {
378
  color: #bfbfbf;
Mark Otto's avatar
Mark Otto committed
379
380
381
382
383
384
385
386
387
388
}
h1 {
  font-size: 30px;
  line-height: 36px;
}
h1 small {
  font-size: 18px;
}
h2 {
  font-size: 24px;
389
  line-height: 36px;
Mark Otto's avatar
Mark Otto committed
390
391
}
h2 small {
392
  font-size: 18px;
Mark Otto's avatar
Mark Otto committed
393
394
}
h3 {
395
  line-height: 27px;
Mark Otto's avatar
Mark Otto committed
396
397
398
399
400
401
402
  font-size: 18px;
}
h3 small {
  font-size: 14px;
}
h4 {
  font-size: 16px;
Mark Otto's avatar
Mark Otto committed
403
  line-height: 36px;
Mark Otto's avatar
Mark Otto committed
404
405
406
407
408
409
}
h4 small {
  font-size: 12px;
}
h5 {
  font-size: 14px;
Mark Otto's avatar
Mark Otto committed
410
  line-height: 18px;
Mark Otto's avatar
Mark Otto committed
411
412
413
}
h6 {
  font-size: 13px;
Mark Otto's avatar
Mark Otto committed
414
  line-height: 18px;
415
  color: #bfbfbf;
Mark Otto's avatar
Mark Otto committed
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
  text-transform: uppercase;
}
ul, ol {
  margin: 0 0 18px 25px;
}
ul ul,
ul ol,
ol ol,
ol ul {
  margin-bottom: 0;
}
ul {
  list-style: disc;
}
ol {
  list-style: decimal;
}
li {
  line-height: 18px;
435
  color: #404040;
Mark Otto's avatar
Mark Otto committed
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
}
ul.unstyled {
  list-style: none;
  margin-left: 0;
}
dl {
  margin-bottom: 18px;
}
dl dt, dl dd {
  line-height: 18px;
}
dl dt {
  font-weight: bold;
}
dl dd {
  margin-left: 9px;
}
hr {
454
  margin: 20px 0 19px;
Mark Otto's avatar
Mark Otto committed
455
456
457
458
459
460
461
462
463
464
465
466
467
  border: 0;
  border-bottom: 1px solid #eee;
}
strong {
  font-style: inherit;
  font-weight: bold;
}
em {
  font-style: italic;
  font-weight: inherit;
  line-height: inherit;
}
.muted {
468
  color: #bfbfbf;
Mark Otto's avatar
Mark Otto committed
469
}
470
471
472
473
474
475
abbr {
  font-size: 90%;
  text-transform: uppercase;
  border-bottom: 1px dotted #ddd;
  cursor: help;
}
Mark Otto's avatar
Mark Otto committed
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
blockquote {
  margin-bottom: 18px;
  border-left: 5px solid #eee;
  padding-left: 15px;
}
blockquote p {
  font-size: 14px;
  font-weight: 300;
  line-height: 18px;
  margin-bottom: 0;
}
blockquote small {
  display: block;
  font-size: 12px;
  font-weight: 300;
  line-height: 18px;
492
  color: #bfbfbf;
Mark Otto's avatar
Mark Otto committed
493
494
495
496
497
498
499
500
501
502
503
}
blockquote small:before {
  content: '\2014 \00A0';
}
address {
  display: block;
  line-height: 18px;
  margin-bottom: 18px;
}
code, pre {
  padding: 0 3px 2px;
504
  font-family: Menlo, Monaco, Andale Mono, Courier New, monospace;
Mark Otto's avatar
Mark Otto committed
505
506
507
508
509
510
511
512
513
514
515
516
517
  font-size: 12px;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
}
code {
  background-color: #fee9cc;
  color: rgba(0, 0, 0, 0.75);
  padding: 1px 3px;
}
pre {
  background-color: #f5f5f5;
  display: block;
518
  padding: 8.5px;
Mark Otto's avatar
Mark Otto committed
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
  margin: 0 0 18px;
  line-height: 18px;
  font-size: 12px;
  border: 1px solid #ccc;
  border: 1px solid rgba(0, 0, 0, 0.15);
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  white-space: pre;
  white-space: pre-wrap;
  word-wrap: break-word;
}
/* Forms.less
 * Base styles for various input types, form layouts, and states
 * ------------------------------------------------------------- */
form {
  margin-bottom: 18px;
}
537
legend {
Mark Otto's avatar
Mark Otto committed
538
  display: block;
539
540
  width: 100%;
  margin-bottom: 27px;
541
  font-size: 19.5px;
542
  line-height: 36px;
543
  color: #404040;
544
  border-bottom: 1px solid #eee;
Mark Otto's avatar
Mark Otto committed
545
546
547
548
549
550
551
552
553
554
}
label,
input,
select,
textarea {
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 13px;
  font-weight: normal;
  line-height: 18px;
}
555
556
557
label {
  display: block;
  margin-bottom: 5px;
558
  color: #404040;
Mark Otto's avatar
Mark Otto committed
559
560
561
562
563
564
565
}
input,
textarea,
select,
.uneditable-input {
  display: inline-block;
  width: 210px;
566
  height: 18px;
Mark Otto's avatar
Mark Otto committed
567
568
569
  padding: 4px;
  font-size: 13px;
  line-height: 18px;
570
  color: #808080;
Mark Otto's avatar
Mark Otto committed
571
572
573
574
575
  border: 1px solid #ccc;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
}
576
/* Mini reset for unique input types */
Mark Otto's avatar
Mark Otto committed
577
578
579
input[type=checkbox], input[type=radio] {
  width: auto;
  height: auto;
580
  padding: 0;
Mark Otto's avatar
Mark Otto committed
581
  margin: 3px 0;
Mark Otto's avatar
Mark Otto committed
582
583
584
  *margin-top: 0;
  /* IE6-7 */

585
586
  line-height: normal;
  border: none;
587
  cursor: pointer;
Mark Otto's avatar
Mark Otto committed
588
589
}
input[type=file] {
590
  background-color: #ffffff;
591
  background-color: initial;
592
593
594
  padding: initial;
  border: initial;
  line-height: initial;
Mark Otto's avatar
Mark Otto committed
595
596
597
598
599
600
601
602
603
604
605
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
}
input[type=button], input[type=reset], input[type=submit] {
  width: auto;
  height: auto;
}
select, input[type=file] {
  height: 27px;
  line-height: 27px;
606
607
608
  *margin-top: 4px;
  /* For IE7, add top margin to align select with labels */

Mark Otto's avatar
Mark Otto committed
609
}
Mark Otto's avatar
Mark Otto committed
610
select[multiple] {
611
  background-color: #ffffff;
Mark Otto's avatar
Mark Otto committed
612
613
  height: inherit;
}
Mark Otto's avatar
Mark Otto committed
614
615
616
textarea {
  height: auto;
}
Mark Otto's avatar
Mark Otto committed
617
input, textarea {
Mark Otto's avatar
Mark Otto committed
618
619
  -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
620
621
  -ms-transition: border linear 0.2s, box-shadow linear 0.2s;
  -o-transition: border linear 0.2s, box-shadow linear 0.2s;
Mark Otto's avatar
Mark Otto committed
622
623
624
625
626
  transition: border linear 0.2s, box-shadow linear 0.2s;
  -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);
}
Mark Otto's avatar
Mark Otto committed
627
input:focus, textarea:focus {
Jacob Thornton's avatar
Jacob Thornton committed
628
  outline: 0;
Mark Otto's avatar
Mark Otto committed
629
630
631
632
633
  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);
}
Mark Otto's avatar
Mark Otto committed
634
635
636
637
638
639
input[type=file]:focus, input[type=checkbox]:focus, select:focus {
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
  outline: 1px dotted #666;
}
640
.input-mini {
Mark Otto's avatar
Mark Otto committed
641
642
  width: 60px;
}
643
.input-small {
Mark Otto's avatar
Mark Otto committed
644
645
  width: 90px;
}
646
.input-medium {
Mark Otto's avatar
Mark Otto committed
647
648
  width: 150px;
}
649
.input-large {
Mark Otto's avatar
Mark Otto committed
650
651
  width: 210px;
}
652
.input-xlarge {
Mark Otto's avatar
Mark Otto committed
653
654
  width: 270px;
}
655
.input-xxlarge {
Mark Otto's avatar
Mark Otto committed
656
657
  width: 530px;
}
658
input.span1, textarea.span1, select.span1 {
659
660
  display: inline-block;
  float: none;
661
  width: 50px;
662
663
664
  margin-left: 0;
}
input.span2, textarea.span2, select.span2 {
665
666
  display: inline-block;
  float: none;
667
  width: 150px;
668
669
670
  margin-left: 0;
}
input.span3, textarea.span3, select.span3 {
671
672
  display: inline-block;
  float: none;
673
  width: 250px;
674
675
676
  margin-left: 0;
}
input.span4, textarea.span4, select.span4 {
677
678
  display: inline-block;
  float: none;
679
  width: 350px;
680
681
682
  margin-left: 0;
}
input.span5, textarea.span5, select.span5 {
683
684
  display: inline-block;
  float: none;
685
  width: 450px;
686
687
688
  margin-left: 0;
}
input.span6, textarea.span6, select.span6 {
689
690
  display: inline-block;
  float: none;
691
  width: 550px;
692
693
694
  margin-left: 0;
}
input.span7, textarea.span7, select.span7 {
695
696
  display: inline-block;
  float: none;
697
  width: 650px;
698
699
700
  margin-left: 0;
}
input.span8, textarea.span8, select.span8 {
701
702
  display: inline-block;
  float: none;
703
  width: 750px;
704
705
706
  margin-left: 0;
}
input.span9, textarea.span9, select.span9 {
707
708
  display: inline-block;
  float: none;
709
  width: 850px;
710
711
712
  margin-left: 0;
}
input.span10, textarea.span10, select.span10 {
713
714
  display: inline-block;
  float: none;
715
  width: 950px;
716
717
718
  margin-left: 0;
}
input.span11, textarea.span11, select.span11 {
719
720
  display: inline-block;
  float: none;
721
  width: 1050px;
722
723
724
  margin-left: 0;
}
input.span12, textarea.span12, select.span12 {
725
726
  display: inline-block;
  float: none;
727
  width: 1150px;
728
729
730
  margin-left: 0;
}
input.span13, textarea.span13, select.span13 {
731
732
  display: inline-block;
  float: none;
733
  width: 1250px;
734
735
736
  margin-left: 0;
}
input.span14, textarea.span14, select.span14 {
737
738
  display: inline-block;
  float: none;
739
  width: 1350px;
740
741
742
  margin-left: 0;
}
input.span15, textarea.span15, select.span15 {
743
744
  display: inline-block;
  float: none;
745
  width: 1450px;
746
747
748
  margin-left: 0;
}
input.span16, textarea.span16, select.span16 {
749
750
  display: inline-block;
  float: none;
751
  width: 1550px;
752
753
  margin-left: 0;
}
754
755
756
757
758
759
760
input[disabled],
select[disabled],
textarea[disabled],
input[readonly],
select[readonly],
textarea[readonly] {
  background-color: #f5f5f5;
Mark Otto's avatar
Mark Otto committed
761
  border-color: #ddd;
762
  cursor: not-allowed;
Mark Otto's avatar
Mark Otto committed
763
}
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
.has-error {
  background: #f8dcda;
  padding: 9px 0;
  margin: -10px 0 10px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
}
.has-error > label, .has-error span.help-inline, .has-error span.help-block {
  color: #9d261d;
}
.has-error input, .has-error textarea, .has-error select {
  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);
}
.has-error input:focus, .has-error textarea:focus, .has-error select:focus {
  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);
}
.has-error .input-prepend span.add-on, .has-error .input-append span.add-on {
  background: #f4c8c5;
  border-color: #c87872;
  color: #b9554d;
}
.form-actions {
  padding: 17px 20px 18px;
Mark Otto's avatar
Mark Otto committed
794
795
  margin-top: 18px;
  margin-bottom: 18px;
796
  background-color: #f5f5f5;
Mark Otto's avatar
Mark Otto committed
797
798
  border-top: 1px solid #ddd;
}
799
800
801
802
803
804
805
806
.uneditable-input {
  background-color: #ffffff;
  display: block;
  border-color: #eee;
  -webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.025);
  -moz-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.025);
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.025);
  cursor: not-allowed;
Mark Otto's avatar
Mark Otto committed
807
}
808
:-moz-placeholder {
809
  color: #bfbfbf;
Mark Otto's avatar
Mark Otto committed
810
}
811
::-webkit-input-placeholder {
812
  color: #bfbfbf;
Mark Otto's avatar
Mark Otto committed
813
}
814
815
816
.help-text {
  margin-top: 5px;
  margin-bottom: 0;
817
  color: #bfbfbf;
Mark Otto's avatar
Mark Otto committed
818
819
}
.help-inline {
820
  display: inline;
Mark Otto's avatar
Mark Otto committed
821
822
823
824
825
826
827
828
829
830
831
832
833
  padding-left: 5px;
  *position: relative;
  /* IE6-7 */

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

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

}
.input-append input {
  float: left;
  -webkit-border-radius: 3px 0 0 3px;
  -moz-border-radius: 3px 0 0 3px;
  border-radius: 3px 0 0 3px;
}
.input-append .add-on {
  -webkit-border-radius: 0 3px 3px 0;
  -moz-border-radius: 0 3px 3px 0;
  border-radius: 0 3px 3px 0;
893
894
  margin-right: 0;
  margin-left: -1px;
Mark Otto's avatar
Mark Otto committed
895
}
896
897
898
899
900
.form-search .search-query {
  -webkit-border-radius: 14px;
  -moz-border-radius: 14px;
  border-radius: 14px;
}
901
902
.control-group {
  margin-bottom: 18px;
Mark Otto's avatar
Mark Otto committed
903
}
904
.control-group > label {
Mark Otto's avatar
Mark Otto committed
905
906
  font-weight: bold;
}
907
908
909
910
911
.form-horizontal .control-group > label {
  float: left;
  width: 130px;
  padding-top: 5px;
  text-align: right;
Mark Otto's avatar
Mark Otto committed
912
}
913
914
.form-horizontal .controls {
  margin-left: 150px;
Mark Otto's avatar
Mark Otto committed
915
}
916
917
.form-horizontal .control-list {
  padding-top: 6px;
Mark Otto's avatar
Mark Otto committed
918
}
919
920
.form-horizontal .form-actions {
  padding-left: 150px;
Mark Otto's avatar
Mark Otto committed
921
922
923
924
925
926
927
928
929
}
/*
 * Tables.less
 * Tables for, you guessed it, tabular data
 * ---------------------------------------- */
table {
  width: 100%;
  margin-bottom: 18px;
  padding: 0;
930
  border-collapse: separate;
931
932
933
  *border-collapse: collapse;
  /* IE7, collapse table to remove spacing */

Mark Otto's avatar
Mark Otto committed
934
  font-size: 13px;
935
936
937
938
  border: 1px solid #ddd;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
Mark Otto's avatar
Mark Otto committed
939
940
941
}
table th, table td {
  padding: 10px 10px 9px;
942
  line-height: 18px;
Mark Otto's avatar
Mark Otto committed
943
944
945
946
947
  text-align: left;
}
table th {
  padding-top: 9px;
  font-weight: bold;
948
  vertical-align: middle;
949
  border-bottom: 1px solid #ddd;
Mark Otto's avatar
Mark Otto committed
950
}
951
952
953
table td {
  vertical-align: top;
}
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
table th + th, table td + td {
  border-left: 1px solid #ddd;
}
table tr + tr td {
  border-top: 1px solid #ddd;
}
table tbody tr:first-child td:first-child {
  -webkit-border-radius: 4px 0 0 0;
  -moz-border-radius: 4px 0 0 0;
  border-radius: 4px 0 0 0;
}
table tbody tr:first-child td:last-child {
  -webkit-border-radius: 0 4px 0 0;
  -moz-border-radius: 0 4px 0 0;
  border-radius: 0 4px 0 0;
}
table tbody tr:last-child td:first-child {
  -webkit-border-radius: 0 0 0 4px;
  -moz-border-radius: 0 0 0 4px;
  border-radius: 0 0 0 4px;
}
table tbody tr:last-child td:last-child {
  -webkit-border-radius: 0 0 4px 0;
  -moz-border-radius: 0 0 4px 0;
  border-radius: 0 0 4px 0;
}
Mark Otto's avatar
Mark Otto committed
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
.zebra-striped tbody tr:nth-child(odd) td {
  background-color: #f9f9f9;
}
.zebra-striped tbody tr:hover td {
  background-color: #f5f5f5;
}
.zebra-striped .header {
  cursor: pointer;
}
.zebra-striped .header:after {
  content: "";
  float: right;
  margin-top: 7px;
  border-width: 0 4px 4px;
  border-style: solid;
  border-color: #000 transparent;
  visibility: hidden;
}
.zebra-striped .headerSortUp, .zebra-striped .headerSortDown {
  background-color: rgba(141, 192, 219, 0.25);
  text-shadow: 0 1px 1px rgba(255, 255, 255, 0.75);
}
.zebra-striped .header:hover:after {
  visibility: visible;
}
.zebra-striped .headerSortDown:after, .zebra-striped .headerSortDown:hover:after {
  visibility: visible;
  filter: alpha(opacity=60);
  -khtml-opacity: 0.6;
  -moz-opacity: 0.6;
  opacity: 0.6;
}
.zebra-striped .headerSortUp:after {
  border-bottom: none;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 4px solid #000;
  visibility: visible;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
  filter: alpha(opacity=60);
  -khtml-opacity: 0.6;
  -moz-opacity: 0.6;
  opacity: 0.6;
}
table .blue {
  color: #049cdb;
  border-bottom-color: #049cdb;
}
table .headerSortUp.blue, table .headerSortDown.blue {
  background-color: #ade6fe;
}
table .green {
  color: #46a546;
  border-bottom-color: #46a546;
}
table .headerSortUp.green, table .headerSortDown.green {
  background-color: #cdeacd;
}
table .red {
  color: #9d261d;
  border-bottom-color: #9d261d;
}
table .headerSortUp.red, table .headerSortDown.red {
  background-color: #f4c8c5;
}
table .yellow {
  color: #ffc40d;
  border-bottom-color: #ffc40d;
}
table .headerSortUp.yellow, table .headerSortDown.yellow {
  background-color: #fff6d9;
}
table .orange {
  color: #f89406;
  border-bottom-color: #f89406;
}
table .headerSortUp.orange, table .headerSortDown.orange {
  background-color: #fee9cc;
}
table .purple {
  color: #7a43b6;
  border-bottom-color: #7a43b6;
}
table .headerSortUp.purple, table .headerSortDown.purple {
  background-color: #e2d5f0;
}
/* Patterns.less
 * Repeatable UI elements outside the base styles provided from the scaffolding
 * ---------------------------------------------------------------------------- */
1071
.navbar {
Mark Otto's avatar
Mark Otto committed
1072
1073
1074
  height: 40px;
  overflow: visible;
}
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
.navbar-inner {
  background-color: #222222;
  background-color: #222222;
  background-image: -khtml-gradient(linear, left top, left bottom, from(#333333), to(#222222));
  background-image: -moz-linear-gradient(top, #333333, #222222);
  background-image: -ms-linear-gradient(top, #333333, #222222);
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #333333), color-stop(100%, #222222));
  background-image: -webkit-linear-gradient(top, #333333, #222222);
  background-image: -o-linear-gradient(top, #333333, #222222);
  background-image: linear-gradient(top, #333333, #222222);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#333333', endColorstr='#222222', GradientType=0);
  -webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.25), inset 0 -1px 0 rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.25), inset 0 -1px 0 rgba(0, 0, 0, 0.1);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.25), inset 0 -1px 0 rgba(0, 0, 0, 0.1);
}
.navbar a {
1092
  color: #bfbfbf;
Mark Otto's avatar
Mark Otto committed
1093
1094
  text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
}
1095
1096
.navbar .brand a:hover, .navbar ul .active > a {
  background-color: #333333;
Mark Otto's avatar
Mark Otto committed
1097
1098
1099
1100
  background-color: rgba(255, 255, 255, 0.05);
  color: #ffffff;
  text-decoration: none;
}
1101
.navbar .brand {
Mark Otto's avatar
Mark Otto committed
1102
1103
1104
1105
1106
1107
1108
1109
1110
  float: left;
  display: block;
  padding: 8px 20px 12px;
  margin-left: -20px;
  color: #ffffff;
  font-size: 20px;
  font-weight: 200;
  line-height: 1;
}
1111
.navbar p {
1112
1113
1114
  margin: 0;
  line-height: 40px;
}
1115
.navbar p a:hover {
1116
  background-color: transparent;
Mark Otto's avatar
Mark Otto committed
1117
  color: #ffffff;
1118
}
1119
.navbar-search {
Mark Otto's avatar
Mark Otto committed
1120
  position: relative;
Mark Otto's avatar
Mark Otto committed
1121
  margin-top: 6px;
1122
  margin-bottom: 0;
1123
  float: left;
Mark Otto's avatar
Mark Otto committed
1124
}
Mark Otto's avatar
Mark Otto committed
1125
.navbar-search .search-query {
Mark Otto's avatar
Mark Otto committed
1126
1127
1128
1129
1130
1131
1132
  background-color: #444;
  background-color: rgba(255, 255, 255, 0.3);
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: normal;
  font-weight: 13px;
  line-height: 1;
  padding: 4px 9px;
1133
  color: #ffffff;
Mark Otto's avatar
Mark Otto committed
1134
1135
  color: rgba(255, 255, 255, 0.75);
  border: 1px solid #111;
Mark Otto's avatar
Mark Otto committed
1136
1137
1138
  -webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1), 0 1px 0px rgba(255, 255, 255, 0.15);
  -moz-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1), 0 1px 0px rgba(255, 255, 255, 0.15);
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1), 0 1px 0px rgba(255, 255, 255, 0.15);
Mark Otto's avatar
Mark Otto committed
1139
1140
  -webkit-transition: none;
  -moz-transition: none;
Jacob Thornton's avatar
Jacob Thornton committed
1141
1142
  -ms-transition: none;
  -o-transition: none;
Mark Otto's avatar
Mark Otto committed
1143
1144
  transition: none;
}
Mark Otto's avatar
Mark Otto committed
1145
.navbar-search .search-query:-moz-placeholder {
1146
  color: #e6e6e6;
Mark Otto's avatar
Mark Otto committed
1147
}
Mark Otto's avatar
Mark Otto committed
1148
.navbar-search .search-query::-webkit-input-placeholder {
1149
  color: #e6e6e6;
Mark Otto's avatar
Mark Otto committed
1150
}
Mark Otto's avatar
Mark Otto committed
1151
.navbar-search .search-query:hover {
1152
  background-color: #bfbfbf;
Mark Otto's avatar
Mark Otto committed
1153
  background-color: rgba(255, 255, 255, 0.5);
1154
  color: #ffffff;
Mark Otto's avatar
Mark Otto committed
1155
}
Mark Otto's avatar
Mark Otto committed
1156
.navbar-search .search-query:focus, .navbar-search .search-query.focused {
Jacob Thornton's avatar
Jacob Thornton committed
1157
  outline: 0;
1158
  background-color: #ffffff;
1159
  color: #404040;
1160
  text-shadow: 0 1px 0 #ffffff;
Mark Otto's avatar
Mark Otto committed
1161
1162
1163
1164
1165
1166
  border: 0;
  padding: 5px 10px;
  -webkit-box-shadow: 0 0 3px rgba(0, 0, 0, 0.15);
  -moz-box-shadow: 0 0 3px rgba(0, 0, 0, 0.15);
  box-shadow: 0 0 3px rgba(0, 0, 0, 0.15);
}
1167
1168
.navbar-static {
  margin-bottom: 18px;
1169
}
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
.navbar-static .navbar-inner {
  padding-left: 20px;
  padding-right: 20px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
}
.navbar-fixed {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10000;
Mark Otto's avatar
Mark Otto committed
1183
}
1184
.nav {
Mark Otto's avatar
Mark Otto committed
1185
1186
1187
1188
1189
1190
  display: block;
  float: left;
  margin: 0 10px 0 0;
  position: relative;
  left: 0;
}
1191
.nav > li {
Mark Otto's avatar
Mark Otto committed
1192
1193
1194
  display: block;
  float: left;
}
1195
.nav a {
Mark Otto's avatar
Mark Otto committed
1196
1197
1198
1199
1200
1201
  display: block;
  float: none;
  padding: 10px 10px 11px;
  line-height: 19px;
  text-decoration: none;
}
1202
.nav a:hover {
1203
  color: #ffffff;
Mark Otto's avatar
Mark Otto committed
1204
1205
  text-decoration: none;
}
1206
.nav .active > a {
Mark Otto's avatar
Mark Otto committed
1207
1208
1209
  background-color: #222;
  background-color: rgba(0, 0, 0, 0.5);
}
1210
.nav.secondary-nav {
Mark Otto's avatar
Mark Otto committed
1211
1212
1213
1214
  float: right;
  margin-left: 10px;
  margin-right: 0;
}
1215
.nav.secondary-nav .dropdown-menu {
Mark Otto's avatar
Mark Otto committed
1216
  right: 0;
1217
  border: 0;
Mark Otto's avatar
Mark Otto committed
1218
}
1219
.nav .dropdown-toggle:hover, .nav .dropdown.open .dropdown-toggle {
Mark Otto's avatar
Mark Otto committed
1220
1221
1222
  background: #444;
  background: rgba(255, 255, 255, 0.05);
}
1223
.nav .dropdown-menu {
Mark Otto's avatar
Mark Otto committed
1224
1225
  background-color: #333;
}
1226
.nav .dropdown-menu .dropdown-toggle {
1227
  color: #ffffff;
Mark Otto's avatar
Mark Otto committed
1228
}
1229
.nav .dropdown-menu .dropdown-toggle.open {
Mark Otto's avatar
Mark Otto committed
1230
1231
1232
  background: #444;
  background: rgba(255, 255, 255, 0.05);
}
1233
.nav .dropdown-menu li a {
Mark Otto's avatar
Mark Otto committed
1234
1235
1236
  color: #999;
  text-shadow: 0 1px 0 rgba(0, 0, 0, 0.5);
}
1237
.nav .dropdown-menu li a:hover {
Mark Otto's avatar
Mark Otto committed
1238
1239
1240
1241
1242
1243
1244
1245
  background-color: #191919;
  background-image: -khtml-gradient(linear, left top, left bottom, from(#292929), to(#191919));
  background-image: -moz-linear-gradient(top, #292929, #191919);
  background-image: -ms-linear-gradient(top, #292929, #191919);
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #292929), color-stop(100%, #191919));
  background-image: -webkit-linear-gradient(top, #292929, #191919);
  background-image: -o-linear-gradient(top, #292929, #191919);
  background-image: linear-gradient(top, #292929, #191919);
1246
  background-repeat: repeat-x;
1247
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#292929', endColorstr='#191919', GradientType=0);
1248
  color: #ffffff;
Mark Otto's avatar
Mark Otto committed
1249
}
1250
.nav .dropdown-menu .active a {
1251
  color: #ffffff;
1252
}
1253
.nav .dropdown-menu .divider {
Mark Otto's avatar
Mark Otto committed
1254
1255
1256
  background-color: #222;
  border-color: #444;
}
1257
.topbar ul .dropdown-menu li a {
1258
1259
  padding: 4px 15px;
}
1260
.dropdown {
Mark Otto's avatar
Mark Otto committed
1261
1262
  position: relative;
}
1263
.dropdown-toggle:after {
Mark Otto's avatar
Mark Otto committed
1264
1265
1266
1267
1268
1269
1270
  width: 0;
  height: 0;
  display: inline-block;
  content: "↓";
  text-indent: -99999px;
  vertical-align: top;
  margin-top: 8px;
1271
  margin-left: 6px;
Mark Otto's avatar
Mark Otto committed
1272
1273
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
1274
  border-top: 4px solid #ffffff;
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
  filter: alpha(opacity=30);
  -khtml-opacity: 0.3;
  -moz-opacity: 0.3;
  opacity: 0.3;
}
.dropdown:hover .dropdown-toggle:after {
  filter: alpha(opacity=100);
  -khtml-opacity: 1;
  -moz-opacity: 1;
  opacity: 1;
Mark Otto's avatar
Mark Otto committed
1285
}
1286
.dropdown-menu {
1287
  background-color: #ffffff;
Mark Otto's avatar
Mark Otto committed
1288
1289
1290
1291
  float: left;
  display: none;
  position: absolute;
  top: 40px;
Mark Otto's avatar
Mark Otto committed
1292
  z-index: 900;
Mark Otto's avatar
Mark Otto committed
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
  min-width: 160px;
  max-width: 220px;
  _width: 160px;
  margin-left: 0;
  margin-right: 0;
  padding: 6px 0;
  zoom: 1;
  border-color: #999;
  border-color: rgba(0, 0, 0, 0.2);
  border-style: solid;
  border-width: 0 1px 1px;
  -webkit-border-radius: 0 0 6px 6px;
  -moz-border-radius: 0 0 6px 6px;
  border-radius: 0 0 6px 6px;
  -webkit-box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  -moz-box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  -webkit-background-clip: padding-box;
  -moz-background-clip: padding-box;
  background-clip: padding-box;
}
1314
.dropdown-menu li {
Mark Otto's avatar
Mark Otto committed
1315
1316
1317
1318
  float: none;
  display: block;
  background-color: none;
}
1319
.dropdown-menu .divider {
Jacob Thornton's avatar
Jacob Thornton committed
1320
1321
1322
1323
  height: 1px;
  margin: 5px 0;
  overflow: hidden;
  background-color: #eee;
1324
  border-bottom: 1px solid #ffffff;
Jacob Thornton's avatar
Jacob Thornton committed
1325
1326
}
.topbar .dropdown-menu a, .dropdown-menu a {
Mark Otto's avatar
Mark Otto committed
1327
1328
1329
1330
1331
  display: block;
  padding: 4px 15px;
  clear: both;
  font-weight: normal;
  line-height: 18px;
1332
  color: #808080;
1333
  text-shadow: 0 1px 0 #ffffff;
Mark Otto's avatar
Mark Otto committed
1334
}
Jacob Thornton's avatar
Jacob Thornton committed
1335
.topbar .dropdown-menu a:hover, .dropdown-menu a:hover {
Mark Otto's avatar
Mark Otto committed
1336
1337
1338
1339
1340
1341
1342
1343
  background-color: #dddddd;
  background-image: -khtml-gradient(linear, left top, left bottom, from(#eeeeee), to(#dddddd));
  background-image: -moz-linear-gradient(top, #eeeeee, #dddddd);
  background-image: -ms-linear-gradient(top, #eeeeee, #dddddd);
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #eeeeee), color-stop(100%, #dddddd));
  background-image: -webkit-linear-gradient(top, #eeeeee, #dddddd);
  background-image: -o-linear-gradient(top, #eeeeee, #dddddd);
  background-image: linear-gradient(top, #eeeeee, #dddddd);
1344
  background-repeat: repeat-x;
1345
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#eeeeee', endColorstr='#dddddd', GradientType=0);
1346
  color: #404040;
Mark Otto's avatar
Mark Otto committed
1347
1348
1349
1350
1351
1352
  text-decoration: none;
  -webkit-box-shadow: inset 0 1px 0 rgba(0, 0, 0, 0.025), inset 0 -1px rgba(0, 0, 0, 0.025);
  -moz-box-shadow: inset 0 1px 0 rgba(0, 0, 0, 0.025), inset 0 -1px rgba(0, 0, 0, 0.025);
  box-shadow: inset 0 1px 0 rgba(0, 0, 0, 0.025), inset 0 -1px rgba(0, 0, 0, 0.025);
}
.dropdown.open .dropdown-toggle {
1353
  color: #ffffff;
Mark Otto's avatar
Mark Otto committed
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
  background: #ccc;
  background: rgba(0, 0, 0, 0.3);
}
.dropdown.open .dropdown-menu {
  display: block;
}
.tabs, .pills {
  margin: 0 0 20px;
  padding: 0;
  list-style: none;
  zoom: 1;
}
.tabs:before,
.pills:before,
.tabs:after,
.pills:after {
  display: table;
  content: "";
1372
1373
  zoom: 1;
  *display: inline;
Mark Otto's avatar
Mark Otto committed
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
}
.tabs:after, .pills:after {
  clear: both;
}
.tabs > li, .pills > li {
  float: left;
}
.tabs > li > a, .pills > li > a {
  display: block;
}
.tabs {
1385
1386
1387
  border-color: #ddd;
  border-style: solid;
  border-width: 0 0 1px;
Mark Otto's avatar
Mark Otto committed
1388
1389
1390
}
.tabs > li {
  position: relative;
1391
  margin-bottom: -1px;
Mark Otto's avatar
Mark Otto committed
1392
1393
1394
}
.tabs > li > a {
  padding: 0 15px;
1395
  margin-right: 2px;
1396
1397
  line-height: 36px;
  border: 1px solid transparent;
Mark Otto's avatar
Mark Otto committed
1398
1399
1400
1401
1402
1403
  -webkit-border-radius: 4px 4px 0 0;
  -moz-border-radius: 4px 4px 0 0;
  border-radius: 4px 4px 0 0;
}
.tabs > li > a:hover {
  text-decoration: none;
1404
1405
  background-color: #eee;
  border-color: #eee #eee #ddd;
Mark Otto's avatar
Mark Otto committed
1406
}
1407
.tabs .active > a, .tabs .active > a:hover {
1408
  color: #808080;
1409
1410
1411
  background-color: #ffffff;
  border: 1px solid #ddd;
  border-bottom-color: transparent;
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
  cursor: default;
}
.tabbable {
  margin-bottom: 18px;
}
.tabbable .tabs {
  margin-bottom: 0;
  border-bottom: 0;
}
.tabbable .tab-content {
  padding: 19px;
  border: 1px solid #ddd;
}
.tabbable.tabs-bottom .tabs > li {
  margin-top: -1px;
  margin-bottom: 0;
}
.tabbable.tabs-bottom .tabs > li > a {
  -webkit-border-radius: 0 0 4px 4px;
  -moz-border-radius: 0 0 4px 4px;
  border-radius: 0 0 4px 4px;
}
.tabbable.tabs-bottom .tabs > li > a:hover {
  border-bottom-color: transparent;
  border-top-color: #ddd;
}
.tabbable.tabs-bottom .tabs > .active > a, .tabbable.tabs-bottom .tabs > .active > a:hover {
  border-color: transparent #ddd #ddd #ddd;
}
.tabbable.tabs-left .tabs {
  float: left;
}
.tabbable.tabs-left .tabs > li {
  float: none;
}
.tabbable.tabs-right .tabs {
  float: right;
Mark Otto's avatar
Mark Otto committed
1449
}
1450
1451
1452
1453
.tabbable.tabs-right .tabs > li {
  float: none;
}
.tabs .menu-dropdown, .tabs .dropdown-menu {
Mark Otto's avatar
Mark Otto committed
1454
1455
1456
1457
1458
1459
  top: 35px;
  border-width: 1px;
  -webkit-border-radius: 0 6px 6px 6px;
  -moz-border-radius: 0 6px 6px 6px;
  border-radius: 0 6px 6px 6px;
}
1460
.tabs a.menu:after, .tabs .dropdown-toggle:after {
Mark Otto's avatar
Mark Otto committed
1461
1462
1463
1464
  border-top-color: #999;
  margin-top: 15px;
  margin-left: 5px;
}
1465
.tabs li.open.menu .menu, .tabs .open.dropdown .dropdown-toggle {
1466
1467
  border-color: #999;
}
1468
.tabs li.open a.menu:after, .tabs .dropdown.open .dropdown-toggle:after {
Mark Otto's avatar
Mark Otto committed
1469
1470
1471
1472
1473
1474
  border-top-color: #555;
}
.pills a {
  margin: 5px 3px 5px 0;
  padding: 0 15px;
  line-height: 30px;
1475
  text-shadow: 0 1px 1px #ffffff;
Mark Otto's avatar
Mark Otto committed
1476
1477
1478
1479
1480
  -webkit-border-radius: 15px;
  -moz-border-radius: 15px;
  border-radius: 15px;
}
.pills a:hover {
1481
  color: #ffffff;
Mark Otto's avatar
Mark Otto committed
1482
1483
  text-decoration: none;
  text-shadow: 0 1px 1px rgba(0, 0, 0, 0.25);
1484
  background-color: #00438a;
Mark Otto's avatar
Mark Otto committed
1485
1486
}
.pills .active a {
1487
  color: #ffffff;
Mark Otto's avatar
Mark Otto committed
1488
  text-shadow: 0 1px 1px rgba(0, 0, 0, 0.25);
1489
1490
1491
1492
  background-color: #0069d6;
}
.pills-vertical > li {
  float: none;
Mark Otto's avatar
Mark Otto committed
1493
}
1494
.tab-content > .tab-pane, .pill-content > .pill-pane {
1495
1496
1497
1498
1499
  display: none;
}
.tab-content > .active, .pill-content > .active {
  display: block;
}
Mark Otto's avatar
Mark Otto committed
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
.breadcrumb {
  margin: 0 0 18px;
  padding: 7px 14px;
  background-color: #f5f5f5;
  background-image: -khtml-gradient(linear, left top, left bottom, from(#ffffff), to(#f5f5f5));
  background-image: -moz-linear-gradient(top, #ffffff, #f5f5f5);
  background-image: -ms-linear-gradient(top, #ffffff, #f5f5f5);
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #ffffff), color-stop(100%, #f5f5f5));
  background-image: -webkit-linear-gradient(top, #ffffff, #f5f5f5);
  background-image: -o-linear-gradient(top, #ffffff, #f5f5f5);
  background-image: linear-gradient(top, #ffffff, #f5f5f5);
1511
  background-repeat: repeat-x;
Mark Otto's avatar
Mark Otto committed
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff', endColorstr='#f5f5f5', GradientType=0);
  border: 1px solid #ddd;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  -webkit-box-shadow: inset 0 1px 0 #ffffff;
  -moz-box-shadow: inset 0 1px 0 #ffffff;
  box-shadow: inset 0 1px 0 #ffffff;
}
.breadcrumb li {
  display: inline;
1523
  text-shadow: 0 1px 0 #ffffff;
Mark Otto's avatar
Mark Otto committed
1524
1525
1526
}
.breadcrumb .divider {
  padding: 0 5px;
1527
  color: #bfbfbf;
Mark Otto's avatar
Mark Otto committed
1528
1529
}
.breadcrumb .active a {
1530
  color: #404040;
Mark Otto's avatar
Mark Otto committed
1531
}
Mark Otto's avatar
Mark Otto committed
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
.hero-unit {
  background-color: #f5f5f5;
  margin-bottom: 30px;
  padding: 60px;
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  border-radius: 6px;
}
.hero-unit h1 {
  margin-bottom: 0;
  font-size: 60px;
  line-height: 1;
  letter-spacing: -1px;
}
.hero-unit p {
  font-size: 18px;
  font-weight: 200;
  line-height: 27px;
}
footer {
  margin-top: 17px;
  padding-top: 17px;
  border-top: 1px solid #eee;
}
.page-header {
1557
1558
  margin-bottom: 27px;
  border-bottom: 1px solid #eee;
Mark Otto's avatar
Mark Otto committed
1559
1560
1561
1562
1563
  -webkit-box-shadow: 0 1px 0 rgba(255, 255, 255, 0.5);
  -moz-box-shadow: 0 1px 0 rgba(255, 255, 255, 0.5);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.5);
}
.page-header h1 {
1564
  margin-bottom: 13.5px;
Mark Otto's avatar
Mark Otto committed
1565
}
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
.btn.danger,
.alert-message.danger,
.btn.danger:hover,
.alert-message.danger:hover,
.btn.error,
.alert-message.error,
.btn.error:hover,
.alert-message.error:hover,
.btn.success,
.alert-message.success,
.btn.success:hover,
.alert-message.success:hover,
.btn.info,
.alert-message.info,
.btn.info:hover,
.alert-message.info:hover {
  color: #ffffff;
}
.btn.danger,
.alert-message.danger,
.btn.error,
.alert-message.error {
  background-color: #c43c35;
  background-image: -khtml-gradient(linear, left top, left bottom, from(#ee5f5b), to(#c43c35));
  background-image: -moz-linear-gradient(top, #ee5f5b, #c43c35);
  background-image: -ms-linear-gradient(top, #ee5f5b, #c43c35);
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #ee5f5b), color-stop(100%, #c43c35));
  background-image: -webkit-linear-gradient(top, #ee5f5b, #c43c35);
  background-image: -o-linear-gradient(top, #ee5f5b, #c43c35);
  background-image: linear-gradient(top, #ee5f5b, #c43c35);
1596
  background-repeat: repeat-x;
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ee5f5b', endColorstr='#c43c35', GradientType=0);
  text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
  border-color: #c43c35 #c43c35 #882a25;
  border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
}
.btn.success, .alert-message.success {
  background-color: #57a957;
  background-image: -khtml-gradient(linear, left top, left bottom, from(#62c462), to(#57a957));
  background-image: -moz-linear-gradient(top, #62c462, #57a957);
  background-image: -ms-linear-gradient(top, #62c462, #57a957);
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #62c462), color-stop(100%, #57a957));
  background-image: -webkit-linear-gradient(top, #62c462, #57a957);
  background-image: -o-linear-gradient(top, #62c462, #57a957);
  background-image: linear-gradient(top, #62c462, #57a957);
1611
  background-repeat: repeat-x;
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#62c462', endColorstr='#57a957', GradientType=0);
  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);
}
.btn.info, .alert-message.info {
  background-color: #339bb9;
  background-image: -khtml-gradient(linear, left top, left bottom, from(#5bc0de), to(#339bb9));
  background-image: -moz-linear-gradient(top, #5bc0de, #339bb9);
  background-image: -ms-linear-gradient(top, #5bc0de, #339bb9);
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #5bc0de), color-stop(100%, #339bb9));
  background-image: -webkit-linear-gradient(top, #5bc0de, #339bb9);
  background-image: -o-linear-gradient(top, #5bc0de, #339bb9);
  background-image: linear-gradient(top, #5bc0de, #339bb9);
1626
  background-repeat: repeat-x;
1627
1628
1629
1630
1631
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#5bc0de', endColorstr='#339bb9', GradientType=0);
  text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
  border-color: #339bb9 #339bb9 #22697d;
  border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
}
Mark Otto's avatar
Mark Otto committed
1632
1633
1634
.btn {
  cursor: pointer;
  display: inline-block;
1635
  background-color: #e6e6e6;
Mark Otto's avatar
Mark Otto committed
1636
1637
1638
1639
1640
1641
  background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#ffffff), color-stop(25%, #ffffff), to(#e6e6e6));
  background-image: -webkit-linear-gradient(#ffffff, #ffffff 25%, #e6e6e6);
  background-image: -moz-linear-gradient(top, #ffffff, #ffffff 25%, #e6e6e6);
  background-image: -ms-linear-gradient(#ffffff, #ffffff 25%, #e6e6e6);
  background-image: -o-linear-gradient(#ffffff, #ffffff 25%, #e6e6e6);
  background-image: linear-gradient(#ffffff, #ffffff 25%, #e6e6e6);
1642
  background-repeat: no-repeat;
1643
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff', endColorstr='#e6e6e6', GradientType=0);
Mark Otto's avatar
Mark Otto committed
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
  padding: 5px 14px 6px;
  text-shadow: 0 1px 1px rgba(255, 255, 255, 0.75);
  color: #333;
  font-size: 13px;
  line-height: normal;
  border: 1px solid #ccc;
  border-bottom-color: #bbb;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
  -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05);
  -moz-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05);
  -webkit-transition: 0.1s linear all;
  -moz-transition: 0.1s linear all;
Jacob Thornton's avatar
Jacob Thornton committed
1659
1660
  -ms-transition: 0.1s linear all;
  -o-transition: 0.1s linear all;
Mark Otto's avatar
Mark Otto committed
1661
1662
1663
1664
1665
1666
1667
  transition: 0.1s linear all;
}
.btn:hover {
  background-position: 0 -15px;
  color: #333;
  text-decoration: none;
}
Mark Otto's avatar
Mark Otto committed
1668
1669
1670
.btn:focus {
  outline: 1px dotted #666;
}
Mark Otto's avatar
Mark Otto committed
1671
.btn.primary {
1672
  color: #ffffff;
Mark Otto's avatar
Mark Otto committed
1673
1674
1675
1676
1677
1678
1679
1680
  background-color: #0064cd;
  background-image: -khtml-gradient(linear, left top, left bottom, from(#049cdb), to(#0064cd));
  background-image: -moz-linear-gradient(top, #049cdb, #0064cd);
  background-image: -ms-linear-gradient(top, #049cdb, #0064cd);
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #049cdb), color-stop(100%, #0064cd));
  background-image: -webkit-linear-gradient(top, #049cdb, #0064cd);
  background-image: -o-linear-gradient(top, #049cdb, #0064cd);
  background-image: linear-gradient(top, #049cdb, #0064cd);
1681
  background-repeat: repeat-x;
1682
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#049cdb', endColorstr='#0064cd', GradientType=0);
Mark Otto's avatar
Mark Otto committed
1683
1684
1685
1686
  text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
  border-color: #0064cd #0064cd #003f81;
  border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
}
1687
1688
1689
1690
1691
.btn:active {
  -webkit-box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.25), 0 1px 2px rgba(0, 0, 0, 0.05);
  -moz-box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.25), 0 1px 2px rgba(0, 0, 0, 0.05);
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.25), 0 1px 2px rgba(0, 0, 0, 0.05);
}
Mark Otto's avatar
Mark Otto committed
1692
1693
1694
.btn.disabled {
  cursor: default;
  background-image: none;
1695
  filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
Mark Otto's avatar
Mark Otto committed
1696
1697
1698
1699
1700
1701
1702
1703
  filter: alpha(opacity=65);
  -khtml-opacity: 0.65;
  -moz-opacity: 0.65;
  opacity: 0.65;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
}
1704
.btn[disabled] {
Mark Otto's avatar
Mark Otto committed
1705
1706
  cursor: default;
  background-image: none;
1707
  filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
Mark Otto's avatar
Mark Otto committed
1708
1709
1710
1711
1712
1713
1714
1715
1716
  filter: alpha(opacity=65);
  -khtml-opacity: 0.65;
  -moz-opacity: 0.65;
  opacity: 0.65;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
}
.btn.large {
Mark Otto's avatar
Mark Otto committed
1717
  font-size: 15px;
Mark Otto's avatar
Mark Otto committed
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
  line-height: normal;
  padding: 9px 14px 9px;
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  border-radius: 6px;
}
.btn.small {
  padding: 7px 9px 7px;
  font-size: 11px;
}
1728
1729
1730
:root .alert-message, :root .btn {
  border-radius: 0 \0;
}
Mark Otto's avatar
Mark Otto committed
1731
1732
1733
1734
button.btn::-moz-focus-inner, input[type=submit].btn::-moz-focus-inner {
  padding: 0;
  border: 0;
}
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
.btn-toolbar {
  zoom: 1;
}
.btn-toolbar:before, .btn-toolbar:after {
  display: table;
  content: "";
  zoom: 1;
  *display: inline;
}
.btn-toolbar:after {
  clear: both;
}
.btn-toolbar .btn-group {
  float: left;
  margin-right: 10px;
}
.btn-group {
  zoom: 1;
}
.btn-group:before, .btn-group:after {
  display: table;
  content: "";
  zoom: 1;
  *display: inline;
}
.btn-group:after {
  clear: both;
}
.btn-group .btn {
  position: relative;
  float: left;
  margin-left: -1px;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
}
.btn-group .btn:first-child {
  margin-left: 0;
  -webkit-border-top-left-radius: 4px;
  -moz-border-radius-topleft: 4px;
  border-top-left-radius: 4px;
  -webkit-border-bottom-left-radius: 4px;
  -moz-border-radius-bottomleft: 4px;
  border-bottom-left-radius: 4px;
}
.btn-group .btn:last-child {
  -webkit-border-top-right-radius: 4px;
  -moz-border-radius-topright: 4px;
  border-top-right-radius: 4px;
  -webkit-border-bottom-right-radius: 4px;
  -moz-border-radius-bottomright: 4px;
  border-bottom-right-radius: 4px;
}
.btn-group .btn:hover, .btn-group .btn:focus, .btn-group .btn:active {
  z-index: 2;
}
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
.close {
  float: right;
  color: #000000;
  font-size: 20px;
  font-weight: bold;
  line-height: 13.5px;
  text-shadow: 0 1px 0 #ffffff;
  filter: alpha(opacity=20);
  -khtml-opacity: 0.2;
  -moz-opacity: 0.2;
  opacity: 0.2;
}
.close:hover {
  color: #000000;
  text-decoration: none;
  filter: alpha(opacity=40);
  -khtml-opacity: 0.4;
  -moz-opacity: 0.4;
  opacity: 0.4;
}
Mark Otto's avatar
Mark Otto committed
1811
.alert-message {
1812
1813
1814
  position: relative;
  padding: 7px 15px;
  margin-bottom: 18px;
1815
  color: #404040;
Mark Otto's avatar
Mark Otto committed
1816
1817
1818
1819
1820
1821
1822
1823
  background-color: #eedc94;
  background-image: -khtml-gradient(linear, left top, left bottom, from(#fceec1), to(#eedc94));
  background-image: -moz-linear-gradient(top, #fceec1, #eedc94);
  background-image: -ms-linear-gradient(top, #fceec1, #eedc94);
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #fceec1), color-stop(100%, #eedc94));
  background-image: -webkit-linear-gradient(top, #fceec1, #eedc94);
  background-image: -o-linear-gradient(top, #fceec1, #eedc94);
  background-image: linear-gradient(top, #fceec1, #eedc94);
1824
  background-repeat: repeat-x;
1825
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fceec1', endColorstr='#eedc94', GradientType=0);
Mark Otto's avatar
Mark Otto committed
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
  text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
  border-color: #eedc94 #eedc94 #e4c652;
  border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.5);
  border-width: 1px;
  border-style: solid;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
  -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.25);
  -moz-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.25);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.25);
}
1839
1840
1841
1842
1843
.alert-message .close {
  *margin-top: 3px;
  /* IE7 spacing */

}
Mark Otto's avatar
Mark Otto committed
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
.alert-message h5 {
  line-height: 18px;
}
.alert-message p {
  margin-bottom: 0;
}
.alert-message div {
  margin-top: 5px;
  margin-bottom: 2px;
  line-height: 28px;
}
.alert-message .btn {
  -webkit-box-shadow: 0 1px 0 rgba(255, 255, 255, 0.25);
  -moz-box-shadow: 0 1px 0 rgba(255, 255, 255, 0.25);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.25);
}
.alert-message.block-message {
  background-image: none;
  background-color: #fdf5d9;
1863
  filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
Mark Otto's avatar
Mark Otto committed
1864
1865
1866
1867
1868
1869
  padding: 14px;
  border-color: #fceec1;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
}
1870
.alert-message.block-message ul, .alert-message.block-message p {
Mark Otto's avatar
Mark Otto committed
1871
1872
  margin-right: 30px;
}
1873
1874
1875
1876
.alert-message.block-message ul {
  margin-bottom: 0;
}
.alert-message.block-message li {
1877
  color: #404040;
1878
}
Mark Otto's avatar
Mark Otto committed
1879
1880
1881
1882
.alert-message.block-message .alert-actions {
  margin-top: 5px;
}
.alert-message.block-message.error, .alert-message.block-message.success, .alert-message.block-message.info {
1883
  color: #404040;
Mark Otto's avatar
Mark Otto committed
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.5);
}
.alert-message.block-message.error {
  background-color: #fddfde;
  border-color: #fbc7c6;
}
.alert-message.block-message.success {
  background-color: #d1eed1;
  border-color: #bfe7bf;
}
.alert-message.block-message.info {
  background-color: #ddf4fb;
  border-color: #c6edf9;
}
.pagination {
  height: 36px;
  margin: 18px 0;
}
.pagination ul {
  float: left;
  margin: 0;
  border: 1px solid #ddd;
  border: 1px solid rgba(0, 0, 0, 0.15);
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  -webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
  -moz-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}
.pagination li {
  display: inline;
}
.pagination a {
  float: left;
  padding: 0 14px;
  line-height: 34px;
  border-right: 1px solid;
  border-right-color: #ddd;
  border-right-color: rgba(0, 0, 0, 0.15);
  *border-right-color: #ddd;
  /* IE6-7 */

  text-decoration: none;
}
.pagination a:hover, .pagination .active a {
  background-color: #c7eefe;
}
.pagination .disabled a, .pagination .disabled a:hover {
  background-color: transparent;
1934
  color: #bfbfbf;
Mark Otto's avatar
Mark Otto committed
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
}
.pagination .next a {
  border: 0;
}
.well {
  background-color: #f5f5f5;
  margin-bottom: 20px;
  padding: 19px;
  min-height: 20px;
  border: 1px solid #eee;
  border: 1px solid rgba(0, 0, 0, 0.05);
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05);
  -moz-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05);
}
1953
1954
1955
1956
.well blockquote {
  border-color: #ddd;
  border-color: rgba(0, 0, 0, 0.15);
}
Mark Otto's avatar
Mark Otto committed
1957
.modal-backdrop {
1958
  background-color: #000000;
Mark Otto's avatar
Mark Otto committed
1959
1960
1961
1962
1963
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
Mark Otto's avatar
Mark Otto committed
1964
  z-index: 10000;
Mark Otto's avatar
Mark Otto committed
1965
}
Jacob Thornton's avatar
Jacob Thornton committed
1966
1967
1968
.modal-backdrop.fade {
  opacity: 0;
}
Jacob Thornton's avatar
blah    
Jacob Thornton committed
1969
.modal-backdrop, .modal-backdrop.fade.in {
Jacob Thornton's avatar
Jacob Thornton committed
1970
1971
1972
1973
  filter: alpha(opacity=80);
  -khtml-opacity: 0.8;
  -moz-opacity: 0.8;
  opacity: 0.8;
1974
}
Mark Otto's avatar
Mark Otto committed
1975
1976
1977
1978
.modal {
  position: fixed;
  top: 50%;
  left: 50%;
1979
  z-index: 11000;
Mark Otto's avatar
Mark Otto committed
1980
  width: 560px;
Jacob Thornton's avatar
Jacob Thornton committed
1981
  margin: -250px 0 0 -250px;
Mark Otto's avatar
Mark Otto committed
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
  background-color: #ffffff;
  border: 1px solid #999;
  border: 1px solid rgba(0, 0, 0, 0.3);
  *border: 1px solid #999;
  /* IE6-7 */

  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  border-radius: 6px;
  -webkit-box-shadow: 0 3px 7px rgba(0, 0, 0, 0.3);
  -moz-box-shadow: 0 3px 7px rgba(0, 0, 0, 0.3);
  box-shadow: 0 3px 7px rgba(0, 0, 0, 0.3);
  -webkit-background-clip: padding-box;
  -moz-background-clip: padding-box;
  background-clip: padding-box;
}
1998
1999
2000
.modal .close {
  margin-top: 7px;
}
Jacob Thornton's avatar
Jacob Thornton committed
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
.modal.fade {
  -webkit-transition: opacity .3s linear, top .3s ease-out;
  -moz-transition: opacity .3s linear, top .3s ease-out;
  -ms-transition: opacity .3s linear, top .3s ease-out;
  -o-transition: opacity .3s linear, top .3s ease-out;
  transition: opacity .3s linear, top .3s ease-out;
  top: -25%;
}
.modal.fade.in {
  top: 50%;
}
Mark Otto's avatar
Mark Otto committed
2012
2013
.modal-header {
  border-bottom: 1px solid #eee;
2014
  padding: 5px 15px;
Mark Otto's avatar
Mark Otto committed
2015
2016
}
.modal-body {
2017
  padding: 15px;
Mark Otto's avatar
Mark Otto committed
2018
2019
2020
}
.modal-footer {
  background-color: #f5f5f5;
2021
  padding: 14px 15px 15px;
Mark Otto's avatar
Mark Otto committed
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
  border-top: 1px solid #ddd;
  -webkit-border-radius: 0 0 6px 6px;
  -moz-border-radius: 0 0 6px 6px;
  border-radius: 0 0 6px 6px;
  -webkit-box-shadow: inset 0 1px 0 #ffffff;
  -moz-box-shadow: inset 0 1px 0 #ffffff;
  box-shadow: inset 0 1px 0 #ffffff;
  zoom: 1;
  margin-bottom: 0;
}
.modal-footer:before, .modal-footer:after {
  display: table;
  content: "";
2035
2036
  zoom: 1;
  *display: inline;
Mark Otto's avatar
Mark Otto committed
2037
2038
2039
2040
2041
}
.modal-footer:after {
  clear: both;
}
.modal-footer .btn {
2042
  float: right;
Mark Otto's avatar
Mark Otto committed
2043
  margin-left: 5px;
Mark Otto's avatar
Mark Otto committed
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
}
.twipsy {
  display: block;
  position: absolute;
  visibility: visible;
  padding: 5px;
  font-size: 11px;
  z-index: 1000;
  filter: alpha(opacity=80);
  -khtml-opacity: 0.8;
  -moz-opacity: 0.8;
  opacity: 0.8;
}
2057
2058
2059
2060
2061
2062
.twipsy.fade.in {
  filter: alpha(opacity=80);
  -khtml-opacity: 0.8;
  -moz-opacity: 0.8;
  opacity: 0.8;
}
Mark Otto's avatar
Mark Otto committed
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
.twipsy.above .twipsy-arrow {
  bottom: 0;
  left: 50%;
  margin-left: -5px;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 5px solid #000000;
}
.twipsy.left .twipsy-arrow {
  top: 50%;
  right: 0;
  margin-top: -5px;
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
  border-left: 5px solid #000000;
}
.twipsy.below .twipsy-arrow {
  top: 0;
  left: 50%;
  margin-left: -5px;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-bottom: 5px solid #000000;
}
.twipsy.right .twipsy-arrow {
  top: 50%;
  left: 0;
  margin-top: -5px;
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
  border-right: 5px solid #000000;
}
.twipsy-inner {
  padding: 3px 8px;
2097
  background-color: #000000;
Mark Otto's avatar
Mark Otto committed
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
  color: white;
  text-align: center;
  max-width: 200px;
  text-decoration: none;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
}
.twipsy-arrow {
  position: absolute;
  width: 0;
  height: 0;
}
.popover {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1000;
  padding: 5px;
  display: none;
}
.popover.above .arrow {
  bottom: 0;
  left: 50%;
  margin-left: -5px;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 5px solid #000000;
}
.popover.right .arrow {
  top: 50%;
  left: 0;
  margin-top: -5px;
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
  border-right: 5px solid #000000;
}
.popover.below .arrow {
  top: 0;
  left: 50%;
  margin-left: -5px;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-bottom: 5px solid #000000;
}
.popover.left .arrow {
  top: 50%;
  right: 0;
  margin-top: -5px;
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
  border-left: 5px solid #000000;
}
.popover .arrow {
  position: absolute;
  width: 0;
  height: 0;
}
.popover .inner {
2157
2158
  background-color: #000000;
  background-color: rgba(0, 0, 0, 0.8);
Mark Otto's avatar
Mark Otto committed
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
  padding: 3px;
  overflow: hidden;
  width: 280px;
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  border-radius: 6px;
  -webkit-box-shadow: 0 3px 7px rgba(0, 0, 0, 0.3);
  -moz-box-shadow: 0 3px 7px rgba(0, 0, 0, 0.3);
  box-shadow: 0 3px 7px rgba(0, 0, 0, 0.3);
}
.popover .title {
  background-color: #f5f5f5;
  padding: 9px 15px;
  line-height: 1;
  -webkit-border-radius: 3px 3px 0 0;
  -moz-border-radius: 3px 3px 0 0;
  border-radius: 3px 3px 0 0;
  border-bottom: 1px solid #eee;
}
.popover .content {
  background-color: #ffffff;
  padding: 14px;
  -webkit-border-radius: 0 0 3px 3px;
  -moz-border-radius: 0 0 3px 3px;
  border-radius: 0 0 3px 3px;
  -webkit-background-clip: padding-box;
  -moz-background-clip: padding-box;
  background-clip: padding-box;
}
.popover .content p, .popover .content ul, .popover .content ol {
  margin-bottom: 0;
}
2191
.fade {
2192
2193
2194
2195
2196
2197
2198
  -webkit-transition: opacity 0.15s linear;
  -moz-transition: opacity 0.15s linear;
  -ms-transition: opacity 0.15s linear;
  -o-transition: opacity 0.15s linear;
  transition: opacity 0.15s linear;
  opacity: 0;
}
2199
.fade.in {
2200
2201
  opacity: 1;
}
2202
2203
.label {
  padding: 1px 3px 2px;
2204
  background-color: #bfbfbf;
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
  font-size: 9.75px;
  font-weight: bold;
  color: #ffffff;
  text-transform: uppercase;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
}
.label.important {
  background-color: #c43c35;
}
.label.warning {
  background-color: #f89406;
}
.label.success {
  background-color: #46a546;
}
.label.notice {
  background-color: #62cffc;
}
Mark Otto's avatar
Mark Otto committed
2225
2226
.media-grid {
  margin-left: -20px;
Mark Otto's avatar
Mark Otto committed
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
  margin-bottom: 0;
  zoom: 1;
}
.media-grid:before, .media-grid:after {
  display: table;
  content: "";
  zoom: 1;
  *display: inline;
}
.media-grid:after {
  clear: both;
Mark Otto's avatar
Mark Otto committed
2238
2239
2240
2241
}
.media-grid li {
  display: inline;
}
Mark Otto's avatar
Mark Otto committed
2242
.media-grid a {
Mark Otto's avatar
Mark Otto committed
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
  float: left;
  padding: 4px;
  margin: 0 0 20px 20px;
  border: 1px solid #ddd;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
  -webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, 0.075);
  -moz-box-shadow: 0 1px 1px rgba(0, 0, 0, 0.075);
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.075);
}
Mark Otto's avatar
Mark Otto committed
2254
2255
2256
2257
.media-grid a img {
  display: block;
}
.media-grid a:hover {
Mark Otto's avatar
Mark Otto committed
2258
2259
2260
2261
2262
  border-color: #0069d6;
  -webkit-box-shadow: 0 1px 4px rgba(0, 105, 214, 0.25);
  -moz-box-shadow: 0 1px 4px rgba(0, 105, 214, 0.25);
  box-shadow: 0 1px 4px rgba(0, 105, 214, 0.25);
}
2263
2264
2265
2266
/* Responsive.less
 * For phone and tablet devices
 * ------------------------------------------------------------- */
@media (max-width: 480px) {
2267
2268
2269
2270
2271
2272
2273
2274
  .container {
    width: auto;
    padding: 0 10px;
  }
  [class*="span"] {
    float: none;
    display: block;
    width: auto;
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
    margin: 0;
  }
  .modal {
    width: auto;
    margin: 0;
  }
  .form-horizontal .control-group > label {
    float: none;
    width: auto;
    padding-top: 0;
    text-align: left;
  }
  .form-horizontal .controls {
    margin-left: 0;
  }
  .form-horizontal .control-list {
    padding-top: 0;
  }
  .form-horizontal .form-actions {
    padding-left: 0;
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
  }
}
@media (min-width: 480px) and (max-width: 768px) {
  .container {
    width: auto;
    padding: 0 10px;
  }
  [class*="span"] {
    float: none;
    display: block;
    width: auto;
    margin: 0;
  }
}
@media (min-width: 768px) and (max-width: 940px) {
  .container {
    width: 748px;
  }
  .span1 {
2314
    width: 44px;
2315
2316
  }
  .span2 {
2317
    width: 108px;
2318
2319
  }
  .span3 {
2320
    width: 172px;
2321
2322
  }
  .span4 {
2323
    width: 236px;
2324
2325
  }
  .span5 {
2326
    width: 300px;
2327
2328
  }
  .span6 {
2329
    width: 364px;
2330
2331
  }
  .span7 {
2332
    width: 428px;
2333
2334
  }
  .span8 {
2335
    width: 492px;
2336
2337
  }
  .span9 {
2338
    width: 556px;
2339
2340
  }
  .span10 {
2341
    width: 620px;
2342
2343
  }
  .span11 {
2344
    width: 684px;
2345
2346
  }
  .span12 {
2347
    width: 748px;
2348
2349
  }
  .offset1 {
2350
    margin-left: 64px;
2351
2352
  }
  .offset2 {
2353
    margin-left: 128px;
2354
2355
  }
  .offset3 {
2356
    margin-left: 192px;
2357
2358
  }
  .offset4 {
2359
    margin-left: 256px;
2360
2361
  }
  .offset5 {
2362
    margin-left: 320px;
2363
2364
  }
  .offset6 {
2365
    margin-left: 384px;
2366
2367
  }
  .offset7 {
2368
    margin-left: 448px;
2369
2370
  }
  .offset8 {
2371
    margin-left: 512px;
2372
2373
  }
  .offset9 {
2374
    margin-left: 576px;
2375
2376
  }
  .offset10 {
2377
    margin-left: 640px;
2378
2379
  }
  .offset11 {
2380
    margin-left: 704px;
2381
2382
  }
  .offset12 {
2383
    margin-left: 768px;
2384
2385
  }
}
2386
2387
2388
2389
/*
// LARGE DESKTOP & UP
// ------------------

2390
@media (min-width: 1210px) {
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400

  // Reset grid variables
  @gridColumns:       12;
  @gridColumnWidth:   70px;
  @gridGutterWidth:   30px;
  @siteWidth:         1170px;

  // Bring grid mixins to recalculate widths
  .columns(@columnSpan: 1) {
    width: (@gridColumnWidth * @columnSpan) + (@gridGutterWidth * (@columnSpan - 1));
2401
  }
2402
2403
  .offset(@columnOffset: 1) {
    margin-left: (@gridColumnWidth * @columnOffset) + (@gridGutterWidth * (@columnOffset - 1)) + @gridGutterWidth;
2404
  }
2405
2406
2407

  .container {
    width: @siteWidth;
2408
  }
2409
2410
  [class*="span"] {
    margin-left: @gridGutterWidth;
2411
  }
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440

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

2441
}
2442
*/