/*
 * Scaffolding
 *
 * Basic resets for tests
 */

body {
  padding: 60px 0 80px;
}




.justified {
  width: 100%;
}
.justified > li {
  float: none;
}
.justified > li > a {
  text-align: center;
  margin-bottom: 5px;
}
@media (min-width: 768px) {
  .justified > li {
    display: table-cell;
    width: 1%;
  }
}
.justified > li > a {
  width: 100%;
}
.justified > li + li > a {
  border-left: none
}
.justified > li:nth-child(2) > a {
  border-left: 1px solid #DDD;
}


/* Badges */
.badge-info {
  background-color: #5bc0de;
}
.badge-success {
  background-color: #5cb85c;
}
.badge-warning {
  background-color: #f0ad4e;
}
.badge-danger {
  background-color: #d9534f;
}


.pager li.pager-middle {
  display: none;
}

@media (min-width: 1040px) {
  .pager li.pager-middle {
    display: inline-block;
  }
}


/*
 * Validation styles
 */
#validate:before {
  display: block;
  content: "\2713  assets path works!";
  font-size: 15px;
  font-weight: bold;
  padding: 15px;
  margin-bottom: 20px;
  color: #569C57;
  background-color: #e0f7d7;
  border: 1px solid #d1ecc2;
  border-radius: 4px;
}


.nav > li:after {
  position: absolute;
  top: 9px;
  right: 10px;
  content: "class='" attr(class) "'";
  font-family: Monaco, Menlo, Consolas, "Courier New", monospace;
  padding: 2px 4px;
  margin-left: 10px;
  font-size: 90%;
  color: #C7254E;
  white-space: nowrap;
  background-color: #F9F2F4;
  border-radius: 4px;
  clear: both;
}

.pager-heading {
  position: relative;
  display: block;
  padding: 10px 15px;
}

.pager > .active > a,
.pager > .active > span,
.pager > .active > a:hover,
.pager > .active > span:hover,
.pager > .active > a:focus,
.pager > .active > span:focus {
  z-index: 2;
  color: #ffffff;
  background-color: #428bca;
  border-color: #428bca;
  cursor: default;
}

/* Blockquotes */
.callout {
  margin: 20px 0;
  padding: 20px;
  border-left: 3px solid #eee;
}
.callout h4 {
  margin-top: 0;
  margin-bottom: 5px;
}
.callout p:last-child {
  margin-bottom: 0;
}
.callout-success {
  background-color: #fdf7f7;
  border-color: #eed3d7;
}
.callout-success h4 {
  color: #eed3d7;
}
.callout-info {
  background-color: #f4f8fa;
  border-color: #bce8f1;
}
.callout-info h4 {
  color: #3a87ad;
}
.callout-warning {
  background-color: #faf8f0;
  border-color: #faebcc;
}
.callout-warning h4 {
  color: #c09853;
}
.callout-danger {
  background-color: #fdf7f7;
  border-color: #eed3d7;
}
.callout-danger h4 {
  color: #b94a48;
}


