bootstrap.css 114 KB
Newer Older
5001
.popover.left > .arrow {
5002
5003
5004
5005
  top: 50%;
  right: -11px;
  margin-top: -11px;
  border-right-width: 0;
5006
  border-left-color: rgba(0, 0, 0, .25);
Mark Otto's avatar
Mark Otto committed
5007
}
5008
.popover.left > .arrow:after {
Mark Otto's avatar
Mark Otto committed
5009
5010
  right: 1px;
  bottom: -10px;
5011
5012
5013
  content: " ";
  border-right-width: 0;
  border-left-color: #fff;
Mark Otto's avatar
Mark Otto committed
5014
}
Mark Otto's avatar
Mark Otto committed
5015
5016
5017
5018
5019
.carousel {
  position: relative;
}
.carousel-inner {
  position: relative;
Mark Otto's avatar
Mark Otto committed
5020
  width: 100%;
5021
  overflow: hidden;
Mark Otto's avatar
Mark Otto committed
5022
}
Mark Otto's avatar
Mark Otto committed
5023
.carousel-inner > .item {
Mark Otto's avatar
Mark Otto committed
5024
  position: relative;
5025
5026
5027
5028
  display: none;
  -webkit-transition: .6s ease-in-out left;
       -o-transition: .6s ease-in-out left;
          transition: .6s ease-in-out left;
Mark Otto's avatar
Mark Otto committed
5029
}
Mark Otto's avatar
Mark Otto committed
5030
5031
.carousel-inner > .item > img,
.carousel-inner > .item > a > img {
5032
  line-height: 1;
Mark Otto's avatar
Mark Otto committed
5033
}
Mark Otto's avatar
grunt    
Mark Otto committed
5034
@media all and (transform-3d), (-webkit-transform-3d) {
5035
  .carousel-inner > .item {
5036
5037
5038
5039
5040
5041
5042
5043
    -webkit-transition: -webkit-transform .6s ease-in-out;
         -o-transition:      -o-transform .6s ease-in-out;
            transition:         transform .6s ease-in-out;

    -webkit-backface-visibility: hidden;
            backface-visibility: hidden;
    -webkit-perspective: 1000;
            perspective: 1000;
5044
5045
5046
5047
  }
  .carousel-inner > .item.next,
  .carousel-inner > .item.active.right {
    left: 0;
5048
5049
    -webkit-transform: translate3d(100%, 0, 0);
            transform: translate3d(100%, 0, 0);
5050
5051
5052
5053
  }
  .carousel-inner > .item.prev,
  .carousel-inner > .item.active.left {
    left: 0;
5054
5055
    -webkit-transform: translate3d(-100%, 0, 0);
            transform: translate3d(-100%, 0, 0);
5056
5057
5058
5059
5060
  }
  .carousel-inner > .item.next.left,
  .carousel-inner > .item.prev.right,
  .carousel-inner > .item.active {
    left: 0;
5061
5062
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
5063
5064
  }
}
Mark Otto's avatar
Mark Otto committed
5065
5066
5067
5068
5069
5070
5071
5072
5073
5074
5075
5076
5077
5078
5079
5080
5081
5082
5083
5084
5085
5086
5087
5088
5089
5090
5091
5092
5093
5094
5095
5096
5097
.carousel-inner > .active,
.carousel-inner > .next,
.carousel-inner > .prev {
  display: block;
}
.carousel-inner > .active {
  left: 0;
}
.carousel-inner > .next,
.carousel-inner > .prev {
  position: absolute;
  top: 0;
  width: 100%;
}
.carousel-inner > .next {
  left: 100%;
}
.carousel-inner > .prev {
  left: -100%;
}
.carousel-inner > .next.left,
.carousel-inner > .prev.right {
  left: 0;
}
.carousel-inner > .active.left {
  left: -100%;
}
.carousel-inner > .active.right {
  left: 100%;
}
.carousel-control {
  position: absolute;
  top: 0;
Mark Otto's avatar
Mark Otto committed
5098
  bottom: 0;
5099
  left: 0;
5100
  width: 15%;
5101
  font-size: 20px;
5102
  color: #fff;
5103
  text-align: center;
5104
5105
  text-shadow: 0 1px 2px rgba(0, 0, 0, .6);
  opacity: .5;
Mark Otto's avatar
Mark Otto committed
5106
5107
}
.carousel-control.left {
5108
5109
5110
5111
  background-image: -webkit-linear-gradient(left, rgba(0, 0, 0, .5) 0%, rgba(0, 0, 0, .0001) 100%);
  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)));
  background-image:         linear-gradient(to right, rgba(0, 0, 0, .5) 0%, rgba(0, 0, 0, .0001) 100%);
Mark Otto's avatar
Mark Otto committed
5112
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#80000000', endColorstr='#00000000', GradientType=1);
5113
  background-repeat: repeat-x;
Mark Otto's avatar
Mark Otto committed
5114
5115
}
.carousel-control.right {
Mark Otto's avatar
Mark Otto committed
5116
  right: 0;
5117
5118
5119
5120
5121
  left: auto;
  background-image: -webkit-linear-gradient(left, rgba(0, 0, 0, .0001) 0%, rgba(0, 0, 0, .5) 100%);
  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)));
  background-image:         linear-gradient(to right, rgba(0, 0, 0, .0001) 0%, rgba(0, 0, 0, .5) 100%);
Mark Otto's avatar
Mark Otto committed
5122
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00000000', endColorstr='#80000000', GradientType=1);
5123
  background-repeat: repeat-x;
Mark Otto's avatar
Mark Otto committed
5124
5125
5126
}
.carousel-control:hover,
.carousel-control:focus {
5127
  color: #fff;
Mark Otto's avatar
Mark Otto committed
5128
  text-decoration: none;
5129
  outline: 0;
5130
  opacity: .9;
Mark Otto's avatar
Mark Otto committed
5131
}
5132
.carousel-control .icon-prev,
Mark Otto's avatar
Mark Otto committed
5133
.carousel-control .icon-next {
Mark Otto's avatar
Mark Otto committed
5134
  position: absolute;
Mark Otto's avatar
Mark Otto committed
5135
  top: 50%;
5136
  z-index: 5;
Mark Otto's avatar
Mark Otto committed
5137
  display: inline-block;
Mark Otto's avatar
Mark Otto committed
5138
5139
5140
5141
  width: 20px;
  height: 20px;
  margin-top: -10px;
  font-family: serif;
5142
}
Mark Otto's avatar
Mark Otto committed
5143
.carousel-control .icon-prev {
5144
  left: 50%;
Mark Otto's avatar
Mark Otto committed
5145
  margin-left: -10px;
5146
}
Mark Otto's avatar
Mark Otto committed
5147
.carousel-control .icon-next {
5148
  right: 50%;
Mark Otto's avatar
Mark Otto committed
5149
  margin-right: -10px;
5150
}
5151
.carousel-control .icon-prev:before {
Mark Otto's avatar
Mark Otto committed
5152
  content: '\2039';
5153
5154
}
.carousel-control .icon-next:before {
Mark Otto's avatar
Mark Otto committed
5155
  content: '\203a';
5156
}
Mark Otto's avatar
Mark Otto committed
5157
5158
.carousel-indicators {
  position: absolute;
5159
  bottom: 10px;
Mark Otto's avatar
Mark Otto committed
5160
  left: 50%;
5161
  z-index: 15;
5162
  width: 60%;
Mark Otto's avatar
Mark Otto committed
5163
  padding-left: 0;
5164
  margin-left: -30%;
Mark Otto's avatar
Mark Otto committed
5165
  text-align: center;
5166
  list-style: none;
Mark Otto's avatar
Mark Otto committed
5167
}
Mark Otto's avatar
Mark Otto committed
5168
.carousel-indicators li {
Mark Otto's avatar
Mark Otto committed
5169
  display: inline-block;
5170
5171
5172
  width: 10px;
  height: 10px;
  margin: 1px;
Mark Otto's avatar
Mark Otto committed
5173
  text-indent: -999px;
5174
  cursor: pointer;
5175
  background-color: rgba(0, 0, 0, 0);
5176
5177
  border: 1px solid #fff;
  border-radius: 10px;
Mark Otto's avatar
Mark Otto committed
5178
5179
}
.carousel-indicators .active {
5180
5181
  width: 12px;
  height: 12px;
5182
5183
  margin: 0;
  background-color: #fff;
Mark Otto's avatar
Mark Otto committed
5184
}
5185
5186
.carousel-caption {
  position: absolute;
5187
  right: 15%;
5188
  bottom: 20px;
5189
  left: 15%;
5190
  z-index: 10;
5191
5192
  padding-top: 20px;
  padding-bottom: 20px;
5193
  color: #fff;
5194
  text-align: center;
5195
  text-shadow: 0 1px 2px rgba(0, 0, 0, .6);
Mark Otto's avatar
Mark Otto committed
5196
}
Mark Otto's avatar
Mark Otto committed
5197
5198
5199
.carousel-caption .btn {
  text-shadow: none;
}
5200
@media screen and (min-width: 48em) {
Chris Rebert's avatar
Chris Rebert committed
5201
  .carousel-control .icon-prev,
5202
  .carousel-control .icon-next {
Mark Otto's avatar
Mark Otto committed
5203
5204
5205
    width: 30px;
    height: 30px;
    margin-top: -15px;
5206
    font-size: 30px;
5207
  }
Mark Otto's avatar
Mark Otto committed
5208
5209
5210
5211
5212
5213
  .carousel-control .icon-prev {
    margin-left: -15px;
  }
  .carousel-control .icon-next {
    margin-right: -15px;
  }
5214
  .carousel-caption {
Mark Otto's avatar
Mark Otto committed
5215
    right: 20%;
5216
    left: 20%;
5217
    padding-bottom: 30px;
5218
5219
  }
  .carousel-indicators {
5220
    bottom: 20px;
5221
  }
Mark Otto's avatar
Mark Otto committed
5222
5223
}
.clearfix:before,
5224
.clearfix:after,
5225
5226
.dl-horizontal dd:before,
.dl-horizontal dd:after,
5227
5228
5229
5230
5231
5232
5233
5234
5235
5236
5237
5238
5239
5240
5241
5242
5243
5244
5245
5246
5247
5248
5249
5250
.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,
.modal-footer:before,
.modal-footer:after {
Mark Otto's avatar
Mark Otto committed
5251
  display: table;
5252
  content: " ";
Mark Otto's avatar
Mark Otto committed
5253
}
5254
.clearfix:after,
5255
.dl-horizontal dd:after,
5256
5257
5258
5259
5260
5261
5262
5263
5264
5265
5266
5267
.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,
.modal-footer:after {
Mark Otto's avatar
Mark Otto committed
5268
5269
  clear: both;
}
5270
5271
.center-block {
  display: block;
Mark Otto's avatar
Mark Otto committed
5272
  margin-right: auto;
5273
  margin-left: auto;
5274
}
Mark Otto's avatar
Mark Otto committed
5275
.pull-right {
liuyl's avatar
liuyl committed
5276
  float: right !important;
Mark Otto's avatar
Mark Otto committed
5277
5278
}
.pull-left {
liuyl's avatar
liuyl committed
5279
  float: left !important;
Mark Otto's avatar
Mark Otto committed
5280
}
Mark Otto's avatar
Mark Otto committed
5281
5282
5283
5284
5285
5286
5287
5288
.inverse {
  color: #eceeef;
  background-color: #373a3c;
}
.p-a {
  padding: 1rem;
}
.p-h {
Mark Otto's avatar
Mark Otto committed
5289
  padding-right: 1rem;
Mark Otto's avatar
Mark Otto committed
5290
  padding-left: 1rem;
Mark Otto's avatar
Mark Otto committed
5291
5292
5293
5294
5295
}
.p-v {
  padding-top: 1rem;
  padding-bottom: 1rem;
}
Mark Otto's avatar
Mark Otto committed
5296
5297
5298
.pos-f-t {
  position: fixed;
  top: 0;
Mark Otto's avatar
Mark Otto committed
5299
  right: 0;
Mark Otto's avatar
Mark Otto committed
5300
  left: 0;
Mark Otto's avatar
Mark Otto committed
5301
5302
  z-index: 1030;
}
Mark Otto's avatar
Mark Otto committed
5303
5304
5305
5306
5307
5308
5309
5310
5311
.show {
  display: block !important;
}
.invisible {
  visibility: hidden;
}
.text-hide {
  font: 0/0 a;
  color: transparent;
Mark Otto's avatar
Mark Otto committed
5312
  text-shadow: none;
5313
5314
  background-color: transparent;
  border: 0;
Mark Otto's avatar
Mark Otto committed
5315
5316
}
.hidden {
5317
5318
  display: none !important;
  visibility: hidden !important;
Mark Otto's avatar
Mark Otto committed
5319
5320
5321
5322
5323
5324
}
.affix {
  position: fixed;
}
@-ms-viewport {
  width: device-width;
5325
}
5326
5327
5328
5329
5330
5331
5332
5333
5334
5335
5336
5337
5338
5339
.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;
}
5340
@media (max-width: 47.9em) {
5341
5342
5343
5344
  .visible-xs-block {
    display: block !important;
  }
}
5345
@media (max-width: 47.9em) {
5346
5347
5348
5349
  .visible-xs-inline {
    display: inline !important;
  }
}
5350
@media (max-width: 47.9em) {
5351
5352
5353
5354
  .visible-xs-inline-block {
    display: inline-block !important;
  }
}
5355
@media (min-width: 48em) and (max-width: 61.9em) {
5356
5357
5358
5359
  .visible-sm-block {
    display: block !important;
  }
}
5360
@media (min-width: 48em) and (max-width: 61.9em) {
5361
5362
5363
5364
  .visible-sm-inline {
    display: inline !important;
  }
}
5365
@media (min-width: 48em) and (max-width: 61.9em) {
5366
5367
5368
5369
  .visible-sm-inline-block {
    display: inline-block !important;
  }
}
5370
@media (min-width: 62em) and (max-width: 74.9em) {
5371
5372
5373
5374
  .visible-md-block {
    display: block !important;
  }
}
5375
@media (min-width: 62em) and (max-width: 74.9em) {
5376
5377
5378
5379
  .visible-md-inline {
    display: inline !important;
  }
}
5380
@media (min-width: 62em) and (max-width: 74.9em) {
5381
5382
5383
5384
  .visible-md-inline-block {
    display: inline-block !important;
  }
}
5385
@media (min-width: 75em) {
5386
5387
5388
5389
  .visible-lg-block {
    display: block !important;
  }
}
5390
@media (min-width: 75em) {
5391
5392
5393
5394
  .visible-lg-inline {
    display: inline !important;
  }
}
5395
@media (min-width: 75em) {
5396
5397
5398
5399
  .visible-lg-inline-block {
    display: inline-block !important;
  }
}
5400
@media (min-width: 48em) and (max-width: 61.9em) {
5401
  .hidden-sm {
5402
    display: none !important;
5403
  }
5404
}
5405
@media (min-width: 62em) and (max-width: 74.9em) {
5406
  .hidden-md {
5407
    display: none !important;
5408
  }
5409
}
5410
@media (min-width: 75em) {
5411
  .hidden-lg {
5412
    display: none !important;
5413
  }
Mark Otto's avatar
Mark Otto committed
5414
}
5415
5416
5417
5418
5419
5420
5421
5422
5423
5424
5425
5426
5427
5428
5429
5430
5431
5432
5433
5434
5435
5436
5437
5438
.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;
  }
}
5439
@media print {
5440
  .hidden-print {
5441
    display: none !important;
5442
  }
Mark Otto's avatar
Mark Otto committed
5443
}
5444
/*# sourceMappingURL=bootstrap.css.map */
For faster browsing, not all history is shown. View entire blame