bootstrap.css 108 KB
Newer Older
4001
4002
4003
4004
4005
4006
4007
4008
4009
4010
4011
4012
4013
4014
4015
4016
4017
4018
4019
.alert-warning hr {
  border-top-color: #f7e1b5;
}
.alert-warning .alert-link {
  color: #66512c;
}
.alert-danger {
  color: #a94442;
  background-color: #f2dede;
  border-color: #ebccd1;
}
.alert-danger hr {
  border-top-color: #e4b9c0;
}
.alert-danger .alert-link {
  color: #843534;
}
@-webkit-keyframes progress-bar-stripes {
  from {
4020
    background-position: 24px 0;
4021
4022
  }
  to {
XhmikosR's avatar
XhmikosR committed
4023
    background-position: 0 0;
4024
4025
  }
}
Bas Bosman's avatar
Bas Bosman committed
4026
4027
@-o-keyframes progress-bar-stripes {
  from {
4028
    background-position: 24px 0;
Bas Bosman's avatar
Bas Bosman committed
4029
4030
  }
  to {
XhmikosR's avatar
XhmikosR committed
4031
    background-position: 0 0;
Bas Bosman's avatar
Bas Bosman committed
4032
4033
  }
}
4034
4035
@keyframes progress-bar-stripes {
  from {
4036
    background-position: 24px 0;
4037
4038
  }
  to {
XhmikosR's avatar
XhmikosR committed
4039
    background-position: 0 0;
4040
4041
4042
  }
}
.progress {
4043
4044
  display: block;
  width: 100%;
Mark Otto's avatar
Mark Otto committed
4045
4046
  height: 24px;
  margin-bottom: 24px;
4047
4048
4049
4050
4051
4052
4053
4054
4055
}
.progress[value] {
  color: #0074d9;
  border: 0;

  appearance: none;
}
.progress[value]::-webkit-progress-bar {
  background-color: #eee;
Mark Otto's avatar
Mark Otto committed
4056
  border-radius: .2rem;
4057
4058
  -webkit-box-shadow: inset 0 .1rem .1rem rgba(0, 0, 0, .1);
          box-shadow: inset 0 .1rem .1rem rgba(0, 0, 0, .1);
4059
}
4060
4061
.progress[value]::-webkit-progress-value::before {
  content: attr(value);
4062
}
4063
4064
4065
4066
.progress[value]::-webkit-progress-value {
  background-color: #0074d9;
  border-top-left-radius: .2rem;
  border-bottom-left-radius: .2rem;
4067
}
4068
4069
.progress[value="0"]::-webkit-progress-value {
  min-width: 2rem;
4070
  color: #818a91;
4071
4072
4073
  background-color: transparent;
  background-image: none;
}
4074
4075
4076
4077
4078
4079
4080
4081
4082
4083
4084
4085
4086
4087
4088
4089
4090
4091
4092
4093
4094
4095
4096
4097
4098
.progress[value="100"]::-webkit-progress-value {
  border-top-right-radius: .2rem;
  border-bottom-right-radius: .2rem;
}
@-moz-document url-prefix() {
  .progress[value] {
    background-color: #eee;
    border-radius: .2rem;
    box-shadow: inset 0 .1rem .1rem rgba(0, 0, 0, .1);
  }
  .progress[value]::-moz-progress-bar {
    background-color: #0074d9;
    border-top-left-radius: .2rem;
    border-bottom-left-radius: .2rem;
  }
  .progress[value="0"]::-moz-progress-bar {
    min-width: 2rem;
    color: #818a91;
    background-color: transparent;
    background-image: none;
  }
  .progress[value="100"]::-moz-progress-bar {
    border-top-right-radius: .2rem;
    border-bottom-right-radius: .2rem;
  }
4099
}
4100
4101
4102
4103
4104
4105
4106
4107
4108
4109
4110
4111
4112
4113
4114
4115
4116
4117
4118
4119
4120
4121
4122
4123
4124
4125
4126
@media screen and (min-width:0\0) {
  .progress {
    background-color: #eee;
    border-radius: .2rem;
    -webkit-box-shadow: inset 0 .1rem .1rem rgba(0, 0, 0, .1);
            box-shadow: inset 0 .1rem .1rem rgba(0, 0, 0, .1);
  }
  .progress-bar {
    display: inline-block;
    height: 24px;
    text-indent: -999rem;
    background-color: #0074d9;
    border-top-left-radius: .2rem;
    border-bottom-left-radius: .2rem;
  }
  .progress[width^="0"] {
    min-width: 2rem;
    color: #818a91;
    background-color: transparent;
    background-image: none;
  }
  .progress[width="100%"] {
    border-top-right-radius: .2rem;
    border-bottom-right-radius: .2rem;
  }
}
.progress-striped[value]::-webkit-progress-value {
4127
  background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent);
Bas Bosman's avatar
Bas Bosman committed
4128
  background-image:      -o-linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent);
4129
  background-image:         linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent);
4130
4131
  -webkit-background-size: 24px 24px;
          background-size: 24px 24px;
4132
}
4133
.progress-striped[value]::-moz-progress-bar {
4134
  background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent);
Bas Bosman's avatar
Bas Bosman committed
4135
  background-image:      -o-linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent);
4136
  background-image:         linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent);
4137
4138
4139
4140
4141
4142
4143
4144
4145
4146
4147
4148
4149
4150
4151
4152
4153
  background-size: 24px 24px;
}
@media screen and (min-width:0\0) {
  .progress-bar-striped {
    background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent);
    background-image:      -o-linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent);
    background-image:         linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent);
    -webkit-background-size: 24px 24px;
            background-size: 24px 24px;
  }
}
.progress-animated[value]::-webkit-progress-value {
  -webkit-animation: progress-bar-stripes 2s linear infinite;
          animation: progress-bar-stripes 2s linear infinite;
}
.progress-animated[value]::-moz-progress-bar {
  animation: progress-bar-stripes 2s linear infinite;
4154
}
4155
4156
4157
4158
4159
4160
@media screen and (min-width:0\0) {
  .progress-animated .progress-bar-striped {
    -webkit-animation: progress-bar-stripes 2s linear infinite;
         -o-animation: progress-bar-stripes 2s linear infinite;
            animation: progress-bar-stripes 2s linear infinite;
  }
4161
}
4162
4163
4164
4165
4166
4167
4168
4169
4170
4171
4172
4173
4174
4175
4176
4177
4178
4179
4180
4181
4182
4183
4184
.progress-success[value]::-webkit-progress-value {
  background-color: #5cb85c;
}
.progress-success[value]::-moz-progress-bar {
  background-color: #5cb85c;
}
@media screen and (min-width:0\0) {
  .progress-success .progress-bar {
    background-color: #5cb85c;
  }
}
.progress-info[value]::-webkit-progress-value {
  background-color: #5bc0de;
}
.progress-info[value]::-moz-progress-bar {
  background-color: #5bc0de;
}
@media screen and (min-width:0\0) {
  .progress-info .progress-bar {
    background-color: #5bc0de;
  }
}
.progress-warning[value]::-webkit-progress-value {
4185
4186
  background-color: #f0ad4e;
}
4187
4188
.progress-warning[value]::-moz-progress-bar {
  background-color: #f0ad4e;
4189
}
4190
4191
4192
4193
@media screen and (min-width:0\0) {
  .progress-warning .progress-bar {
    background-color: #f0ad4e;
  }
4194
}
4195
.progress-danger[value]::-webkit-progress-value {
4196
4197
  background-color: #d9534f;
}
4198
4199
4200
4201
4202
4203
4204
.progress-danger[value]::-moz-progress-bar {
  background-color: #d9534f;
}
@media screen and (min-width:0\0) {
  .progress-danger .progress-bar {
    background-color: #d9534f;
  }
4205
4206
4207
4208
4209
4210
4211
4212
4213
4214
4215
4216
4217
4218
4219
4220
4221
4222
4223
4224
}
.media,
.media-body {
  overflow: hidden;
  zoom: 1;
}
.media,
.media .media {
  margin-top: 15px;
}
.media:first-child {
  margin-top: 0;
}
.media-object {
  display: block;
}
.media-heading {
  margin: 0 0 5px;
}
.media > .pull-left {
XhmikosR's avatar
XhmikosR committed
4225
  margin-right: 10px;
4226
4227
}
.media > .pull-right {
XhmikosR's avatar
XhmikosR committed
4228
  margin-left: 10px;
4229
4230
}
.media-list {
XhmikosR's avatar
XhmikosR committed
4231
  padding-left: 0;
4232
4233
4234
  list-style: none;
}
.list-group {
XhmikosR's avatar
XhmikosR committed
4235
  padding-left: 0;
4236
4237
4238
4239
4240
4241
4242
4243
4244
4245
4246
  margin-bottom: 20px;
}
.list-group-item {
  position: relative;
  display: block;
  padding: 10px 15px;
  margin-bottom: -1px;
  background-color: #fff;
  border: 1px solid #ddd;
}
.list-group-item:first-child {
Mark Otto's avatar
Mark Otto committed
4247
4248
  border-top-left-radius: .2rem;
  border-top-right-radius: .2rem;
4249
4250
4251
}
.list-group-item:last-child {
  margin-bottom: 0;
Mark Otto's avatar
Mark Otto committed
4252
4253
  border-bottom-right-radius: .2rem;
  border-bottom-left-radius: .2rem;
4254
4255
}
.list-group-item > .badge {
XhmikosR's avatar
XhmikosR committed
4256
  float: right;
4257
4258
}
.list-group-item > .badge + .badge {
XhmikosR's avatar
XhmikosR committed
4259
  margin-right: 5px;
4260
4261
4262
4263
4264
4265
4266
4267
4268
}
a.list-group-item {
  color: #555;
}
a.list-group-item .list-group-item-heading {
  color: #333;
}
a.list-group-item:hover,
a.list-group-item:focus {
Mark Otto's avatar
Mark Otto committed
4269
  color: #555;
4270
4271
4272
  text-decoration: none;
  background-color: #f5f5f5;
}
4273
4274
4275
.list-group-item.disabled,
.list-group-item.disabled:hover,
.list-group-item.disabled:focus {
4276
  color: #818a91;
XhmikosR's avatar
XhmikosR committed
4277
  cursor: not-allowed;
4278
  background-color: #eceeef;
4279
4280
4281
4282
4283
4284
4285
4286
4287
}
.list-group-item.disabled .list-group-item-heading,
.list-group-item.disabled:hover .list-group-item-heading,
.list-group-item.disabled:focus .list-group-item-heading {
  color: inherit;
}
.list-group-item.disabled .list-group-item-text,
.list-group-item.disabled:hover .list-group-item-text,
.list-group-item.disabled:focus .list-group-item-text {
4288
  color: #818a91;
4289
}
4290
4291
4292
.list-group-item.active,
.list-group-item.active:hover,
.list-group-item.active:focus {
4293
4294
  z-index: 2;
  color: #fff;
Mark Otto's avatar
Mark Otto committed
4295
4296
  background-color: #027de7;
  border-color: #027de7;
4297
}
4298
4299
.list-group-item.active .list-group-item-heading,
.list-group-item.active:hover .list-group-item-heading,
XhmikosR's avatar
XhmikosR committed
4300
4301
4302
4303
4304
4305
4306
.list-group-item.active:focus .list-group-item-heading,
.list-group-item.active .list-group-item-heading > small,
.list-group-item.active:hover .list-group-item-heading > small,
.list-group-item.active:focus .list-group-item-heading > small,
.list-group-item.active .list-group-item-heading > .small,
.list-group-item.active:hover .list-group-item-heading > .small,
.list-group-item.active:focus .list-group-item-heading > .small {
4307
4308
  color: inherit;
}
4309
4310
4311
.list-group-item.active .list-group-item-text,
.list-group-item.active:hover .list-group-item-text,
.list-group-item.active:focus .list-group-item-text {
Mark Otto's avatar
Mark Otto committed
4312
  color: #b7ddfe;
4313
4314
4315
4316
4317
4318
4319
4320
4321
4322
4323
4324
4325
4326
4327
4328
4329
4330
4331
4332
4333
4334
4335
4336
4337
4338
4339
4340
4341
4342
4343
4344
4345
4346
4347
4348
4349
4350
4351
4352
4353
4354
4355
4356
4357
4358
4359
4360
4361
4362
4363
4364
4365
4366
4367
4368
4369
4370
4371
4372
4373
4374
4375
4376
4377
4378
4379
4380
4381
4382
4383
4384
4385
4386
4387
4388
4389
4390
4391
4392
4393
4394
4395
4396
4397
4398
4399
4400
4401
4402
4403
4404
4405
4406
4407
4408
4409
}
.list-group-item-success {
  color: #3c763d;
  background-color: #dff0d8;
}
a.list-group-item-success {
  color: #3c763d;
}
a.list-group-item-success .list-group-item-heading {
  color: inherit;
}
a.list-group-item-success:hover,
a.list-group-item-success:focus {
  color: #3c763d;
  background-color: #d0e9c6;
}
a.list-group-item-success.active,
a.list-group-item-success.active:hover,
a.list-group-item-success.active:focus {
  color: #fff;
  background-color: #3c763d;
  border-color: #3c763d;
}
.list-group-item-info {
  color: #31708f;
  background-color: #d9edf7;
}
a.list-group-item-info {
  color: #31708f;
}
a.list-group-item-info .list-group-item-heading {
  color: inherit;
}
a.list-group-item-info:hover,
a.list-group-item-info:focus {
  color: #31708f;
  background-color: #c4e3f3;
}
a.list-group-item-info.active,
a.list-group-item-info.active:hover,
a.list-group-item-info.active:focus {
  color: #fff;
  background-color: #31708f;
  border-color: #31708f;
}
.list-group-item-warning {
  color: #8a6d3b;
  background-color: #fcf8e3;
}
a.list-group-item-warning {
  color: #8a6d3b;
}
a.list-group-item-warning .list-group-item-heading {
  color: inherit;
}
a.list-group-item-warning:hover,
a.list-group-item-warning:focus {
  color: #8a6d3b;
  background-color: #faf2cc;
}
a.list-group-item-warning.active,
a.list-group-item-warning.active:hover,
a.list-group-item-warning.active:focus {
  color: #fff;
  background-color: #8a6d3b;
  border-color: #8a6d3b;
}
.list-group-item-danger {
  color: #a94442;
  background-color: #f2dede;
}
a.list-group-item-danger {
  color: #a94442;
}
a.list-group-item-danger .list-group-item-heading {
  color: inherit;
}
a.list-group-item-danger:hover,
a.list-group-item-danger:focus {
  color: #a94442;
  background-color: #ebcccc;
}
a.list-group-item-danger.active,
a.list-group-item-danger.active:hover,
a.list-group-item-danger.active:focus {
  color: #fff;
  background-color: #a94442;
  border-color: #a94442;
}
.list-group-item-heading {
  margin-top: 0;
  margin-bottom: 5px;
}
.list-group-item-text {
  margin-bottom: 0;
  line-height: 1.3;
}
4410
4411
4412
4413
4414
4415
4416
4417
4418
4419
4420
4421
4422
4423
.embed-responsive {
  position: relative;
  display: block;
  height: 0;
  padding: 0;
  overflow: hidden;
}
.embed-responsive .embed-responsive-item,
.embed-responsive iframe,
.embed-responsive embed,
.embed-responsive object {
  position: absolute;
  top: 0;
  bottom: 0;
XhmikosR's avatar
XhmikosR committed
4424
  left: 0;
4425
4426
4427
4428
4429
4430
4431
4432
4433
4434
  width: 100%;
  height: 100%;
  border: 0;
}
.embed-responsive.embed-responsive-16by9 {
  padding-bottom: 56.25%;
}
.embed-responsive.embed-responsive-4by3 {
  padding-bottom: 75%;
}
4435
.close {
XhmikosR's avatar
XhmikosR committed
4436
  float: right;
Mark Otto's avatar
Mark Otto committed
4437
  font-size: 1.5rem;
4438
4439
4440
4441
4442
4443
4444
4445
4446
4447
4448
4449
4450
4451
4452
4453
4454
4455
4456
4457
4458
4459
4460
4461
4462
4463
4464
  font-weight: bold;
  line-height: 1;
  color: #000;
  text-shadow: 0 1px 0 #fff;
  opacity: .2;
}
.close:hover,
.close:focus {
  color: #000;
  text-decoration: none;
  cursor: pointer;
  opacity: .5;
}
button.close {
  -webkit-appearance: none;
  padding: 0;
  cursor: pointer;
  background: transparent;
  border: 0;
}
.modal-open {
  overflow: hidden;
}
.modal {
  position: fixed;
  top: 0;
  right: 0;
4465
4466
  bottom: 0;
  left: 0;
4467
4468
  z-index: 1050;
  display: none;
XhmikosR's avatar
XhmikosR committed
4469
  overflow: hidden;
4470
4471
4472
4473
  -webkit-overflow-scrolling: touch;
  outline: 0;
}
.modal.fade .modal-dialog {
XhmikosR's avatar
XhmikosR committed
4474
  -webkit-transform: translate3d(0, -25%, 0);
4475
4476
4477
  -webkit-transform: transition .3s ease-out;
      -ms-transform: transition .3s ease-out;
       -o-transform: transition .3s ease-out;
XhmikosR's avatar
XhmikosR committed
4478
          transform: translate3d(0, -25%, 0);
4479
          transform: transition .3s ease-out;
4480
4481
}
.modal.in .modal-dialog {
XhmikosR's avatar
XhmikosR committed
4482
4483
4484
4485
4486
4487
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
}
.modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
4488
4489
4490
4491
4492
4493
4494
4495
4496
}
.modal-dialog {
  position: relative;
  width: auto;
  margin: 10px;
}
.modal-content {
  position: relative;
  background-color: #fff;
Bas Bosman's avatar
Bas Bosman committed
4497
4498
  -webkit-background-clip: padding-box;
          background-clip: padding-box;
4499
  border: 1px solid rgba(0, 0, 0, .2);
Mark Otto's avatar
Mark Otto committed
4500
  border-radius: .3rem;
Mark Otto's avatar
grunt    
Mark Otto committed
4501
  outline: 0;
4502
  -webkit-box-shadow: 0 3px 9px rgba(0, 0, 0, .5);
4503
          box-shadow: 0 3px 9px rgba(0, 0, 0, .5);
4504
4505
4506
4507
4508
}
.modal-backdrop {
  position: fixed;
  top: 0;
  right: 0;
4509
4510
  bottom: 0;
  left: 0;
4511
4512
4513
4514
4515
4516
4517
4518
4519
4520
  z-index: 1040;
  background-color: #000;
}
.modal-backdrop.fade {
  opacity: 0;
}
.modal-backdrop.in {
  opacity: .5;
}
.modal-header {
Mark Otto's avatar
Mark Otto committed
4521
  min-height: 16.5px;
4522
4523
4524
4525
4526
4527
4528
4529
  padding: 15px;
  border-bottom: 1px solid #e5e5e5;
}
.modal-header .close {
  margin-top: -2px;
}
.modal-title {
  margin: 0;
Mark Otto's avatar
Mark Otto committed
4530
  line-height: 1.5;
4531
4532
4533
4534
4535
4536
4537
}
.modal-body {
  position: relative;
  padding: 15px;
}
.modal-footer {
  padding: 15px;
XhmikosR's avatar
XhmikosR committed
4538
  text-align: right;
4539
4540
4541
  border-top: 1px solid #e5e5e5;
}
.modal-footer .btn + .btn {
4542
  margin-bottom: 0;
XhmikosR's avatar
XhmikosR committed
4543
  margin-left: 5px;
4544
4545
}
.modal-footer .btn-group .btn + .btn {
XhmikosR's avatar
XhmikosR committed
4546
  margin-left: -1px;
4547
4548
}
.modal-footer .btn-block + .btn-block {
XhmikosR's avatar
XhmikosR committed
4549
  margin-left: 0;
4550
}
fat's avatar
build    
fat committed
4551
4552
4553
4554
4555
4556
4557
.modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
4558
@media (min-width: 48em) {
4559
4560
4561
4562
4563
4564
  .modal-dialog {
    width: 600px;
    margin: 30px auto;
  }
  .modal-content {
    -webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, .5);
4565
            box-shadow: 0 5px 15px rgba(0, 0, 0, .5);
4566
4567
4568
4569
4570
  }
  .modal-sm {
    width: 300px;
  }
}
4571
@media (min-width: 62em) {
4572
4573
4574
4575
4576
4577
  .modal-lg {
    width: 900px;
  }
}
.tooltip {
  position: absolute;
XhmikosR's avatar
XhmikosR committed
4578
  z-index: 1070;
4579
  display: block;
Mark Otto's avatar
Mark Otto committed
4580
  font-size: .85rem;
4581
4582
4583
4584
4585
4586
4587
4588
4589
4590
4591
4592
4593
  line-height: 1.4;
  visibility: visible;
  opacity: 0;
}
.tooltip.in {
  opacity: .9;
}
.tooltip.top {
  padding: 5px 0;
  margin-top: -3px;
}
.tooltip.right {
  padding: 0 5px;
XhmikosR's avatar
XhmikosR committed
4594
  margin-left: 3px;
4595
4596
4597
4598
4599
4600
4601
}
.tooltip.bottom {
  padding: 5px 0;
  margin-top: 3px;
}
.tooltip.left {
  padding: 0 5px;
XhmikosR's avatar
XhmikosR committed
4602
  margin-left: -3px;
4603
4604
4605
4606
4607
4608
4609
4610
}
.tooltip-inner {
  max-width: 200px;
  padding: 3px 8px;
  color: #fff;
  text-align: center;
  text-decoration: none;
  background-color: #000;
Mark Otto's avatar
Mark Otto committed
4611
  border-radius: .2rem;
4612
4613
4614
4615
4616
4617
4618
4619
4620
}
.tooltip-arrow {
  position: absolute;
  width: 0;
  height: 0;
  border-color: transparent;
  border-style: solid;
}
.tooltip.top .tooltip-arrow {
4621
  bottom: 0;
XhmikosR's avatar
XhmikosR committed
4622
4623
  left: 50%;
  margin-left: -5px;
4624
4625
4626
4627
  border-width: 5px 5px 0;
  border-top-color: #000;
}
.tooltip.top-left .tooltip-arrow {
4628
  bottom: 0;
XhmikosR's avatar
XhmikosR committed
4629
  left: 5px;
4630
4631
4632
4633
  border-width: 5px 5px 0;
  border-top-color: #000;
}
.tooltip.top-right .tooltip-arrow {
XhmikosR's avatar
XhmikosR committed
4634
  right: 5px;
4635
4636
4637
4638
4639
4640
  bottom: 0;
  border-width: 5px 5px 0;
  border-top-color: #000;
}
.tooltip.right .tooltip-arrow {
  top: 50%;
XhmikosR's avatar
XhmikosR committed
4641
  left: 0;
4642
  margin-top: -5px;
XhmikosR's avatar
XhmikosR committed
4643
4644
  border-width: 5px 5px 5px 0;
  border-right-color: #000;
4645
4646
4647
}
.tooltip.left .tooltip-arrow {
  top: 50%;
XhmikosR's avatar
XhmikosR committed
4648
  right: 0;
4649
  margin-top: -5px;
XhmikosR's avatar
XhmikosR committed
4650
4651
  border-width: 5px 0 5px 5px;
  border-left-color: #000;
4652
4653
4654
}
.tooltip.bottom .tooltip-arrow {
  top: 0;
XhmikosR's avatar
XhmikosR committed
4655
4656
  left: 50%;
  margin-left: -5px;
4657
4658
4659
4660
4661
  border-width: 0 5px 5px;
  border-bottom-color: #000;
}
.tooltip.bottom-left .tooltip-arrow {
  top: 0;
XhmikosR's avatar
XhmikosR committed
4662
  left: 5px;
4663
4664
4665
4666
4667
  border-width: 0 5px 5px;
  border-bottom-color: #000;
}
.tooltip.bottom-right .tooltip-arrow {
  top: 0;
XhmikosR's avatar
XhmikosR committed
4668
  right: 5px;
4669
4670
4671
4672
4673
4674
  border-width: 0 5px 5px;
  border-bottom-color: #000;
}
.popover {
  position: absolute;
  top: 0;
XhmikosR's avatar
XhmikosR committed
4675
4676
  left: 0;
  z-index: 1060;
4677
4678
4679
  display: none;
  max-width: 276px;
  padding: 1px;
XhmikosR's avatar
XhmikosR committed
4680
  text-align: left;
4681
4682
  white-space: normal;
  background-color: #fff;
Bas Bosman's avatar
Bas Bosman committed
4683
4684
  -webkit-background-clip: padding-box;
          background-clip: padding-box;
4685
  border: 1px solid rgba(0, 0, 0, .2);
Mark Otto's avatar
Mark Otto committed
4686
  border-radius: .3rem;
4687
  -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, .2);
4688
          box-shadow: 0 5px 10px rgba(0, 0, 0, .2);
4689
4690
4691
4692
4693
}
.popover.top {
  margin-top: -10px;
}
.popover.right {
XhmikosR's avatar
XhmikosR committed
4694
  margin-left: 10px;
4695
4696
4697
4698
4699
}
.popover.bottom {
  margin-top: 10px;
}
.popover.left {
XhmikosR's avatar
XhmikosR committed
4700
  margin-left: -10px;
4701
4702
4703
4704
}
.popover-title {
  padding: 8px 14px;
  margin: 0;
Mark Otto's avatar
Mark Otto committed
4705
  font-size: 1rem;
4706
4707
4708
4709
  font-weight: normal;
  line-height: 18px;
  background-color: #f7f7f7;
  border-bottom: 1px solid #ebebeb;
Mark Otto's avatar
Mark Otto committed
4710
  border-radius: -.7rem -.7rem 0 0;
4711
4712
4713
4714
4715
4716
4717
4718
4719
4720
4721
4722
4723
4724
4725
4726
4727
4728
4729
4730
4731
}
.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 {
4732
  bottom: -11px;
XhmikosR's avatar
XhmikosR committed
4733
4734
  left: 50%;
  margin-left: -11px;
4735
4736
4737
4738
4739
  border-top-color: rgba(0, 0, 0, .25);
  border-bottom-width: 0;
}
.popover.top > .arrow:after {
  bottom: 1px;
XhmikosR's avatar
XhmikosR committed
4740
  margin-left: -10px;
4741
4742
4743
4744
4745
4746
  content: " ";
  border-top-color: #fff;
  border-bottom-width: 0;
}
.popover.right > .arrow {
  top: 50%;
XhmikosR's avatar
XhmikosR committed
4747
  left: -11px;
4748
  margin-top: -11px;
XhmikosR's avatar
XhmikosR committed
4749
4750
  border-right-color: rgba(0, 0, 0, .25);
  border-left-width: 0;
4751
4752
}
.popover.right > .arrow:after {
4753
  bottom: -10px;
XhmikosR's avatar
XhmikosR committed
4754
  left: 1px;
4755
  content: " ";
XhmikosR's avatar
XhmikosR committed
4756
4757
  border-right-color: #fff;
  border-left-width: 0;
4758
4759
4760
}
.popover.bottom > .arrow {
  top: -11px;
XhmikosR's avatar
XhmikosR committed
4761
4762
  left: 50%;
  margin-left: -11px;
4763
4764
4765
4766
4767
  border-top-width: 0;
  border-bottom-color: rgba(0, 0, 0, .25);
}
.popover.bottom > .arrow:after {
  top: 1px;
XhmikosR's avatar
XhmikosR committed
4768
  margin-left: -10px;
4769
4770
4771
4772
4773
4774
  content: " ";
  border-top-width: 0;
  border-bottom-color: #fff;
}
.popover.left > .arrow {
  top: 50%;
XhmikosR's avatar
XhmikosR committed
4775
  right: -11px;
4776
  margin-top: -11px;
XhmikosR's avatar
XhmikosR committed
4777
4778
  border-right-width: 0;
  border-left-color: rgba(0, 0, 0, .25);
4779
4780
}
.popover.left > .arrow:after {
XhmikosR's avatar
XhmikosR committed
4781
  right: 1px;
4782
4783
  bottom: -10px;
  content: " ";
XhmikosR's avatar
XhmikosR committed
4784
4785
  border-right-width: 0;
  border-left-color: #fff;
4786
4787
4788
4789
4790
4791
4792
4793
4794
4795
4796
4797
4798
}
.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
4799
       -o-transition: .6s ease-in-out left;
4800
          transition: .6s ease-in-out left;
4801
4802
4803
4804
4805
4806
4807
4808
4809
4810
4811
}
.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
4812
  left: 0;
4813
4814
4815
4816
4817
4818
4819
4820
}
.carousel-inner > .next,
.carousel-inner > .prev {
  position: absolute;
  top: 0;
  width: 100%;
}
.carousel-inner > .next {
XhmikosR's avatar
XhmikosR committed
4821
  left: 100%;
4822
4823
}
.carousel-inner > .prev {
XhmikosR's avatar
XhmikosR committed
4824
  left: -100%;
4825
4826
4827
}
.carousel-inner > .next.left,
.carousel-inner > .prev.right {
XhmikosR's avatar
XhmikosR committed
4828
  left: 0;
4829
4830
}
.carousel-inner > .active.left {
XhmikosR's avatar
XhmikosR committed
4831
  left: -100%;
4832
4833
}
.carousel-inner > .active.right {
XhmikosR's avatar
XhmikosR committed
4834
  left: 100%;
4835
4836
4837
4838
}
.carousel-control {
  position: absolute;
  top: 0;
4839
  bottom: 0;
XhmikosR's avatar
XhmikosR committed
4840
  left: 0;
4841
4842
4843
4844
4845
4846
4847
4848
  width: 15%;
  font-size: 20px;
  color: #fff;
  text-align: center;
  text-shadow: 0 1px 2px rgba(0, 0, 0, .6);
  opacity: .5;
}
.carousel-control.left {
XhmikosR's avatar
XhmikosR committed
4849
  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
4850
4851
  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)));
4852
  background-image:         linear-gradient(to right, rgba(0, 0, 0, .5) 0%, rgba(0, 0, 0, .0001) 100%);
4853
4854
4855
4856
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#80000000', endColorstr='#00000000', GradientType=1);
  background-repeat: repeat-x;
}
.carousel-control.right {
XhmikosR's avatar
XhmikosR committed
4857
4858
4859
  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
4860
4861
  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)));
4862
  background-image:         linear-gradient(to right, rgba(0, 0, 0, .0001) 0%, rgba(0, 0, 0, .5) 100%);
4863
4864
4865
4866
4867
4868
4869
  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;
Mark Otto's avatar
grunt    
Mark Otto committed
4870
  outline: 0;
4871
4872
4873
  opacity: .9;
}
.carousel-control .icon-prev,
Mark Otto's avatar
Mark Otto committed
4874
.carousel-control .icon-next {
4875
4876
4877
4878
  position: absolute;
  top: 50%;
  z-index: 5;
  display: inline-block;
Mark Otto's avatar
Mark Otto committed
4879
4880
4881
4882
  width: 20px;
  height: 20px;
  margin-top: -10px;
  font-family: serif;
4883
}
Mark Otto's avatar
Mark Otto committed
4884
.carousel-control .icon-prev {
XhmikosR's avatar
XhmikosR committed
4885
4886
  left: 50%;
  margin-left: -10px;
4887
}
Mark Otto's avatar
Mark Otto committed
4888
.carousel-control .icon-next {
XhmikosR's avatar
XhmikosR committed
4889
4890
  right: 50%;
  margin-right: -10px;
4891
4892
4893
4894
4895
4896
4897
4898
4899
}
.carousel-control .icon-prev:before {
  content: '\2039';
}
.carousel-control .icon-next:before {
  content: '\203a';
}
.carousel-indicators {
  position: absolute;
4900
  bottom: 10px;
XhmikosR's avatar
XhmikosR committed
4901
  left: 50%;
4902
4903
  z-index: 15;
  width: 60%;
XhmikosR's avatar
XhmikosR committed
4904
4905
  padding-left: 0;
  margin-left: -30%;
4906
4907
4908
4909
4910
4911
4912
4913
4914
4915
4916
4917
4918
4919
4920
4921
4922
4923
4924
4925
4926
4927
4928
  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: 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%;
4929
4930
  bottom: 20px;
  left: 15%;
4931
4932
4933
4934
4935
4936
4937
4938
4939
4940
  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;
}
4941
@media screen and (min-width: 48em) {
4942
4943
4944
4945
4946
4947
4948
  .carousel-control .icon-prev,
  .carousel-control .icon-next {
    width: 30px;
    height: 30px;
    margin-top: -15px;
    font-size: 30px;
  }
XhmikosR's avatar
XhmikosR committed
4949
4950
4951
4952
4953
4954
  .carousel-control .icon-prev {
    margin-left: -15px;
  }
  .carousel-control .icon-next {
    margin-right: -15px;
  }
4955
4956
  .carousel-caption {
    right: 20%;
4957
    left: 20%;
4958
4959
4960
4961
4962
4963
4964
4965
4966
4967
4968
4969
4970
4971
4972
4973
4974
4975
4976
4977
4978
4979
4980
4981
4982
4983
4984
4985
4986
4987
4988
4989
4990
4991
4992
4993
4994
4995
4996
4997
4998
4999
5000
    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,
.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,
For faster browsing, not all history is shown. View entire blame