bootstrap.css 109 KB
Newer Older
4001
4002
.alert {
  padding: 15px;
Mark Otto's avatar
Mark Otto committed
4003
  margin-bottom: 24px;
4004
  border: 1px solid transparent;
Mark Otto's avatar
Mark Otto committed
4005
  border-radius: .25rem;
4006
4007
4008
4009
4010
4011
4012
4013
4014
4015
4016
4017
4018
4019
4020
}
.alert h4 {
  margin-top: 0;
  color: inherit;
}
.alert .alert-link {
  font-weight: bold;
}
.alert > p,
.alert > ul {
  margin-bottom: 0;
}
.alert > p + p {
  margin-top: 5px;
}
XhmikosR's avatar
XhmikosR committed
4021
4022
.alert-dismissible {
  padding-right: 35px;
4023
}
XhmikosR's avatar
XhmikosR committed
4024
.alert-dismissible .close {
4025
4026
  position: relative;
  top: -2px;
XhmikosR's avatar
XhmikosR committed
4027
  right: -21px;
4028
4029
4030
4031
4032
4033
4034
4035
4036
4037
4038
4039
4040
4041
4042
4043
4044
4045
4046
4047
4048
4049
4050
4051
4052
4053
4054
4055
4056
4057
4058
4059
4060
4061
4062
4063
4064
4065
4066
4067
4068
4069
4070
4071
4072
4073
4074
4075
  color: inherit;
}
.alert-success {
  color: #3c763d;
  background-color: #dff0d8;
  border-color: #d6e9c6;
}
.alert-success hr {
  border-top-color: #c9e2b3;
}
.alert-success .alert-link {
  color: #2b542c;
}
.alert-info {
  color: #31708f;
  background-color: #d9edf7;
  border-color: #bce8f1;
}
.alert-info hr {
  border-top-color: #a6e1ec;
}
.alert-info .alert-link {
  color: #245269;
}
.alert-warning {
  color: #8a6d3b;
  background-color: #fcf8e3;
  border-color: #faebcc;
}
.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 {
4076
    background-position: 24px 0;
4077
4078
  }
  to {
XhmikosR's avatar
XhmikosR committed
4079
    background-position: 0 0;
4080
4081
  }
}
Bas Bosman's avatar
Bas Bosman committed
4082
4083
@-o-keyframes progress-bar-stripes {
  from {
4084
    background-position: 24px 0;
Bas Bosman's avatar
Bas Bosman committed
4085
4086
  }
  to {
XhmikosR's avatar
XhmikosR committed
4087
    background-position: 0 0;
Bas Bosman's avatar
Bas Bosman committed
4088
4089
  }
}
4090
4091
@keyframes progress-bar-stripes {
  from {
4092
    background-position: 24px 0;
4093
4094
  }
  to {
XhmikosR's avatar
XhmikosR committed
4095
    background-position: 0 0;
4096
4097
4098
  }
}
.progress {
4099
4100
  display: block;
  width: 100%;
Mark Otto's avatar
Mark Otto committed
4101
4102
  height: 24px;
  margin-bottom: 24px;
4103
4104
4105
4106
4107
4108
4109
4110
4111
}
.progress[value] {
  color: #0074d9;
  border: 0;

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