bootstrap.css 119 KB
Newer Older
5001
5002
5003
.popover-title {
  padding: 8px 14px;
  margin: 0;
Mark Otto's avatar
Mark Otto committed
5004
  font-size: 1rem;
5005
5006
5007
5008
  font-weight: normal;
  line-height: 18px;
  background-color: #f7f7f7;
  border-bottom: 1px solid #ebebeb;
Mark Otto's avatar
Mark Otto committed
5009
  border-radius: -.7rem -.7rem 0 0;
5010
5011
5012
5013
5014
5015
5016
5017
5018
5019
5020
5021
5022
5023
5024
5025
5026
5027
5028
5029
5030
}
.popover-content {
  padding: 9px 14px;
}
.popover > .arrow,
.popover > .arrow:after {
  position: absolute;
  display: block;
  width: 0;
  height: 0;
  border-color: transparent;
  border-style: solid;
}
.popover > .arrow {
  border-width: 11px;
}
.popover > .arrow:after {
  content: "";
  border-width: 10px;
}
.popover.top > .arrow {
5031
  bottom: -11px;
XhmikosR's avatar
XhmikosR committed
5032
5033
  left: 50%;
  margin-left: -11px;
5034
5035
5036
5037
5038
5039
  border-top-color: #999;
  border-top-color: rgba(0, 0, 0, .25);
  border-bottom-width: 0;
}
.popover.top > .arrow:after {
  bottom: 1px;
XhmikosR's avatar
XhmikosR committed
5040
  margin-left: -10px;
5041
5042
5043
5044
5045
5046
  content: " ";
  border-top-color: #fff;
  border-bottom-width: 0;
}
.popover.right > .arrow {
  top: 50%;
XhmikosR's avatar
XhmikosR committed
5047
  left: -11px;
5048
  margin-top: -11px;
XhmikosR's avatar
XhmikosR committed
5049
5050
5051
  border-right-color: #999;
  border-right-color: rgba(0, 0, 0, .25);
  border-left-width: 0;
5052
5053
}
.popover.right > .arrow:after {
5054
  bottom: -10px;
XhmikosR's avatar
XhmikosR committed
5055
  left: 1px;
5056
  content: " ";
XhmikosR's avatar
XhmikosR committed
5057
5058
  border-right-color: #fff;
  border-left-width: 0;
5059
5060
5061
}
.popover.bottom > .arrow {
  top: -11px;
XhmikosR's avatar
XhmikosR committed
5062
5063
  left: 50%;
  margin-left: -11px;
5064
5065
5066
5067
5068
5069
  border-top-width: 0;
  border-bottom-color: #999;
  border-bottom-color: rgba(0, 0, 0, .25);
}
.popover.bottom > .arrow:after {
  top: 1px;
XhmikosR's avatar
XhmikosR committed
5070
  margin-left: -10px;
5071
5072
5073
5074
5075
5076
  content: " ";
  border-top-width: 0;
  border-bottom-color: #fff;
}
.popover.left > .arrow {
  top: 50%;
XhmikosR's avatar
XhmikosR committed
5077
  right: -11px;
5078
  margin-top: -11px;
XhmikosR's avatar
XhmikosR committed
5079
5080
5081
  border-right-width: 0;
  border-left-color: #999;
  border-left-color: rgba(0, 0, 0, .25);
5082
5083
}
.popover.left > .arrow:after {
XhmikosR's avatar
XhmikosR committed
5084
  right: 1px;
5085
5086
  bottom: -10px;
  content: " ";
XhmikosR's avatar
XhmikosR committed
5087
5088
  border-right-width: 0;
  border-left-color: #fff;
5089
5090
5091
5092
5093
5094
5095
5096
5097
5098
5099
5100
5101
}
.carousel {
  position: relative;
}
.carousel-inner {
  position: relative;
  width: 100%;
  overflow: hidden;
}
.carousel-inner > .item {
  position: relative;
  display: none;
  -webkit-transition: .6s ease-in-out left;
Bas Bosman's avatar
Bas Bosman committed
5102
       -o-transition: .6s ease-in-out left;
5103
          transition: .6s ease-in-out left;
5104
5105
5106
5107
5108
5109
5110
5111
5112
5113
5114
}
.carousel-inner > .item > img,
.carousel-inner > .item > a > img {
  line-height: 1;
}
.carousel-inner > .active,
.carousel-inner > .next,
.carousel-inner > .prev {
  display: block;
}
.carousel-inner > .active {
XhmikosR's avatar
XhmikosR committed
5115
  left: 0;
5116
5117
5118
5119
5120
5121
5122
5123
}
.carousel-inner > .next,
.carousel-inner > .prev {
  position: absolute;
  top: 0;
  width: 100%;
}
.carousel-inner > .next {
XhmikosR's avatar
XhmikosR committed
5124
  left: 100%;
5125
5126
}
.carousel-inner > .prev {
XhmikosR's avatar
XhmikosR committed
5127
  left: -100%;
5128
5129
5130
}
.carousel-inner > .next.left,
.carousel-inner > .prev.right {
XhmikosR's avatar
XhmikosR committed
5131
  left: 0;
5132
5133
}
.carousel-inner > .active.left {
XhmikosR's avatar
XhmikosR committed
5134
  left: -100%;
5135
5136
}
.carousel-inner > .active.right {
XhmikosR's avatar
XhmikosR committed
5137
  left: 100%;
5138
5139
5140
5141
}
.carousel-control {
  position: absolute;
  top: 0;
5142
  bottom: 0;
XhmikosR's avatar
XhmikosR committed
5143
  left: 0;
5144
5145
5146
5147
5148
5149
5150
5151
5152
  width: 15%;
  font-size: 20px;
  color: #fff;
  text-align: center;
  text-shadow: 0 1px 2px rgba(0, 0, 0, .6);
  filter: alpha(opacity=50);
  opacity: .5;
}
.carousel-control.left {
XhmikosR's avatar
XhmikosR committed
5153
  background-image: -webkit-linear-gradient(left, rgba(0, 0, 0, .5) 0%, rgba(0, 0, 0, .0001) 100%);
Bas Bosman's avatar
Bas Bosman committed
5154
5155
  background-image:      -o-linear-gradient(left, rgba(0, 0, 0, .5) 0%, rgba(0, 0, 0, .0001) 100%);
  background-image: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, .5)), to(rgba(0, 0, 0, .0001)));
5156
  background-image:         linear-gradient(to right, rgba(0, 0, 0, .5) 0%, rgba(0, 0, 0, .0001) 100%);
5157
5158
5159
5160
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#80000000', endColorstr='#00000000', GradientType=1);
  background-repeat: repeat-x;
}
.carousel-control.right {
XhmikosR's avatar
XhmikosR committed
5161
5162
5163
  right: 0;
  left: auto;
  background-image: -webkit-linear-gradient(left, rgba(0, 0, 0, .0001) 0%, rgba(0, 0, 0, .5) 100%);
Bas Bosman's avatar
Bas Bosman committed
5164
5165
  background-image:      -o-linear-gradient(left, rgba(0, 0, 0, .0001) 0%, rgba(0, 0, 0, .5) 100%);
  background-image: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, .0001)), to(rgba(0, 0, 0, .5)));
5166
  background-image:         linear-gradient(to right, rgba(0, 0, 0, .0001) 0%, rgba(0, 0, 0, .5) 100%);
5167
5168
5169
5170
5171
5172
5173
5174
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00000000', endColorstr='#80000000', GradientType=1);
  background-repeat: repeat-x;
}
.carousel-control:hover,
.carousel-control:focus {
  color: #fff;
  text-decoration: none;
  filter: alpha(opacity=90);
Mark Otto's avatar
grunt    
Mark Otto committed
5175
  outline: 0;
5176
5177
5178
  opacity: .9;
}
.carousel-control .icon-prev,
Mark Otto's avatar
Mark Otto committed
5179
.carousel-control .icon-next {
5180
5181
5182
5183
  position: absolute;
  top: 50%;
  z-index: 5;
  display: inline-block;
Mark Otto's avatar
Mark Otto committed
5184
5185
5186
5187
  width: 20px;
  height: 20px;
  margin-top: -10px;
  font-family: serif;
5188
}
Mark Otto's avatar
Mark Otto committed
5189
.carousel-control .icon-prev {
XhmikosR's avatar
XhmikosR committed
5190
5191
  left: 50%;
  margin-left: -10px;
5192
}
Mark Otto's avatar
Mark Otto committed
5193
.carousel-control .icon-next {
XhmikosR's avatar
XhmikosR committed
5194
5195
  right: 50%;
  margin-right: -10px;
5196
5197
5198
5199
5200
5201
5202
5203
5204
}
.carousel-control .icon-prev:before {
  content: '\2039';
}
.carousel-control .icon-next:before {
  content: '\203a';
}
.carousel-indicators {
  position: absolute;
5205
  bottom: 10px;
XhmikosR's avatar
XhmikosR committed
5206
  left: 50%;
5207
5208
  z-index: 15;
  width: 60%;
XhmikosR's avatar
XhmikosR committed
5209
5210
  padding-left: 0;
  margin-left: -30%;
5211
5212
5213
5214
5215
5216
5217
5218
5219
5220
5221
5222
5223
5224
5225
5226
5227
5228
5229
5230
5231
5232
5233
5234
  text-align: center;
  list-style: none;
}
.carousel-indicators li {
  display: inline-block;
  width: 10px;
  height: 10px;
  margin: 1px;
  text-indent: -999px;
  cursor: pointer;
  background-color: #000 \9;
  background-color: rgba(0, 0, 0, 0);
  border: 1px solid #fff;
  border-radius: 10px;
}
.carousel-indicators .active {
  width: 12px;
  height: 12px;
  margin: 0;
  background-color: #fff;
}
.carousel-caption {
  position: absolute;
  right: 15%;
5235
5236
  bottom: 20px;
  left: 15%;
5237
5238
5239
5240
5241
5242
5243
5244
5245
5246
5247
5248
5249
5250
5251
5252
5253
5254
  z-index: 10;
  padding-top: 20px;
  padding-bottom: 20px;
  color: #fff;
  text-align: center;
  text-shadow: 0 1px 2px rgba(0, 0, 0, .6);
}
.carousel-caption .btn {
  text-shadow: none;
}
@media screen and (min-width: 768px) {
  .carousel-control .icon-prev,
  .carousel-control .icon-next {
    width: 30px;
    height: 30px;
    margin-top: -15px;
    font-size: 30px;
  }
XhmikosR's avatar
XhmikosR committed
5255
5256
5257
5258
5259
5260
  .carousel-control .icon-prev {
    margin-left: -15px;
  }
  .carousel-control .icon-next {
    margin-right: -15px;
  }
5261
5262
  .carousel-caption {
    right: 20%;
5263
    left: 20%;
5264
5265
5266
5267
5268
5269
5270
5271
5272
5273
5274
5275
5276
5277
5278
5279
5280
5281
5282
5283
5284
5285
5286
5287
5288
5289
5290
5291
5292
5293
5294
5295
5296
5297
5298
5299
5300
5301
5302
5303
5304
5305
5306
5307
5308
5309
5310
5311
5312
5313
5314
5315
5316
5317
5318
5319
5320
5321
5322
    padding-bottom: 30px;
  }
  .carousel-indicators {
    bottom: 20px;
  }
}
.clearfix:before,
.clearfix:after,
.dl-horizontal dd:before,
.dl-horizontal dd:after,
.container:before,
.container:after,
.container-fluid:before,
.container-fluid:after,
.row:before,
.row:after,
.form-horizontal .form-group:before,
.form-horizontal .form-group:after,
.btn-toolbar:before,
.btn-toolbar:after,
.btn-group-vertical > .btn-group:before,
.btn-group-vertical > .btn-group:after,
.nav:before,
.nav:after,
.navbar:before,
.navbar:after,
.navbar-header:before,
.navbar-header:after,
.navbar-collapse:before,
.navbar-collapse:after,
.pager:before,
.pager:after,
.panel-body:before,
.panel-body:after,
.modal-footer:before,
.modal-footer:after {
  display: table;
  content: " ";
}
.clearfix:after,
.dl-horizontal dd:after,
.container:after,
.container-fluid:after,
.row:after,
.form-horizontal .form-group:after,
.btn-toolbar:after,
.btn-group-vertical > .btn-group:after,
.nav:after,
.navbar:after,
.navbar-header:after,
.navbar-collapse:after,
.pager:after,
.panel-body:after,
.modal-footer:after {
  clear: both;
}
.center-block {
  display: block;
  margin-right: auto;
5323
  margin-left: auto;
5324
5325
}
.pull-right {
XhmikosR's avatar
XhmikosR committed
5326
  float: right !important;
5327
5328
}
.pull-left {
XhmikosR's avatar
XhmikosR committed
5329
  float: left !important;
5330
5331
5332
5333
5334
5335
5336
5337
5338
5339
5340
5341
5342
5343
5344
5345
5346
5347
5348
5349
5350
5351
5352
}
.hide {
  display: none !important;
}
.show {
  display: block !important;
}
.invisible {
  visibility: hidden;
}
.text-hide {
  font: 0/0 a;
  color: transparent;
  text-shadow: none;
  background-color: transparent;
  border: 0;
}
.hidden {
  display: none !important;
  visibility: hidden !important;
}
.affix {
  position: fixed;
XhmikosR's avatar
XhmikosR committed
5353
5354
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
5355
5356
5357
5358
5359
5360
5361
5362
5363
5364
}
@-ms-viewport {
  width: device-width;
}
.visible-xs,
.visible-sm,
.visible-md,
.visible-lg {
  display: none !important;
}
Mark Otto's avatar
grunt    
Mark Otto committed
5365
5366
5367
5368
5369
5370
5371
5372
5373
5374
5375
5376
5377
5378
.visible-xs-block,
.visible-xs-inline,
.visible-xs-inline-block,
.visible-sm-block,
.visible-sm-inline,
.visible-sm-inline-block,
.visible-md-block,
.visible-md-inline,
.visible-md-inline-block,
.visible-lg-block,
.visible-lg-inline,
.visible-lg-inline-block {
  display: none !important;
}
5379
5380
5381
5382
5383
5384
5385
5386
5387
5388
5389
5390
5391
5392
5393
@media (max-width: 767px) {
  .visible-xs {
    display: block !important;
  }
  table.visible-xs {
    display: table;
  }
  tr.visible-xs {
    display: table-row !important;
  }
  th.visible-xs,
  td.visible-xs {
    display: table-cell !important;
  }
}
Mark Otto's avatar
grunt    
Mark Otto committed
5394
5395
5396
5397
5398
5399
5400
5401
5402
5403
5404
5405
5406
5407
5408
@media (max-width: 767px) {
  .visible-xs-block {
    display: block !important;
  }
}
@media (max-width: 767px) {
  .visible-xs-inline {
    display: inline !important;
  }
}
@media (max-width: 767px) {
  .visible-xs-inline-block {
    display: inline-block !important;
  }
}
5409
5410
5411
5412
5413
5414
5415
5416
5417
5418
5419
5420
5421
5422
5423
@media (min-width: 768px) and (max-width: 991px) {
  .visible-sm {
    display: block !important;
  }
  table.visible-sm {
    display: table;
  }
  tr.visible-sm {
    display: table-row !important;
  }
  th.visible-sm,
  td.visible-sm {
    display: table-cell !important;
  }
}
Mark Otto's avatar
grunt    
Mark Otto committed
5424
5425
5426
5427
5428
5429
5430
5431
5432
5433
5434
5435
5436
5437
5438
@media (min-width: 768px) and (max-width: 991px) {
  .visible-sm-block {
    display: block !important;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .visible-sm-inline {
    display: inline !important;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .visible-sm-inline-block {
    display: inline-block !important;
  }
}
5439
5440
5441
5442
5443
5444
5445
5446
5447
5448
5449
5450
5451
5452
5453
@media (min-width: 992px) and (max-width: 1199px) {
  .visible-md {
    display: block !important;
  }
  table.visible-md {
    display: table;
  }
  tr.visible-md {
    display: table-row !important;
  }
  th.visible-md,
  td.visible-md {
    display: table-cell !important;
  }
}
Mark Otto's avatar
grunt    
Mark Otto committed
5454
5455
5456
5457
5458
5459
5460
5461
5462
5463
5464
5465
5466
5467
5468
@media (min-width: 992px) and (max-width: 1199px) {
  .visible-md-block {
    display: block !important;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .visible-md-inline {
    display: inline !important;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .visible-md-inline-block {
    display: inline-block !important;
  }
}
5469
5470
5471
5472
5473
5474
5475
5476
5477
5478
5479
5480
5481
5482
5483
@media (min-width: 1200px) {
  .visible-lg {
    display: block !important;
  }
  table.visible-lg {
    display: table;
  }
  tr.visible-lg {
    display: table-row !important;
  }
  th.visible-lg,
  td.visible-lg {
    display: table-cell !important;
  }
}
Mark Otto's avatar
grunt    
Mark Otto committed
5484
5485
5486
5487
5488
5489
5490
5491
5492
5493
5494
5495
5496
5497
5498
@media (min-width: 1200px) {
  .visible-lg-block {
    display: block !important;
  }
}
@media (min-width: 1200px) {
  .visible-lg-inline {
    display: inline !important;
  }
}
@media (min-width: 1200px) {
  .visible-lg-inline-block {
    display: inline-block !important;
  }
}
5499
5500
5501
5502
5503
5504
5505
5506
5507
5508
5509
5510
5511
5512
5513
5514
5515
5516
5517
5518
5519
5520
5521
5522
5523
5524
5525
5526
5527
5528
5529
5530
5531
5532
5533
5534
5535
5536
@media (max-width: 767px) {
  .hidden-xs {
    display: none !important;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .hidden-sm {
    display: none !important;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .hidden-md {
    display: none !important;
  }
}
@media (min-width: 1200px) {
  .hidden-lg {
    display: none !important;
  }
}
.visible-print {
  display: none !important;
}
@media print {
  .visible-print {
    display: block !important;
  }
  table.visible-print {
    display: table;
  }
  tr.visible-print {
    display: table-row !important;
  }
  th.visible-print,
  td.visible-print {
    display: table-cell !important;
  }
}
Mark Otto's avatar
grunt    
Mark Otto committed
5537
5538
5539
5540
5541
5542
5543
5544
5545
5546
5547
5548
5549
5550
5551
5552
5553
5554
5555
5556
5557
5558
5559
5560
.visible-print-block {
  display: none !important;
}
@media print {
  .visible-print-block {
    display: block !important;
  }
}
.visible-print-inline {
  display: none !important;
}
@media print {
  .visible-print-inline {
    display: inline !important;
  }
}
.visible-print-inline-block {
  display: none !important;
}
@media print {
  .visible-print-inline-block {
    display: inline-block !important;
  }
}
5561
5562
5563
5564
5565
@media print {
  .hidden-print {
    display: none !important;
  }
}
5566
/*# sourceMappingURL=bootstrap.css.map */
For faster browsing, not all history is shown. View entire blame