/*
 * Bootstrap Documentation
 * Special styles for presenting Bootstrap's documentation and code examples.
 *
 * Table of contents:
 *
 * Scaffolding
 * Main navigation
 * Footer
 * Social buttons
 * Homepage
 * Page headers
 * Old docs callout
 * Ads
 * Side navigation
 * Docs sections
 * Callouts
 * Grid styles
 * Examples
 * Code snippets (highlight)
 * Responsive tests
 * Glyphicons
 * Customizer
 * Miscellaneous
 */


/*
 * Scaffolding
 *
 * Update the basics of our documents to prep for docs content.
 */

body {
  position: relative; /* For scrollyspy      */
  padding-top: 50px; /* Account for fixed navbar */   

}


.page-header {
  position: relative; /* For scrollyspy      */   
  margin-top:50px;
}

.pulsered {
  -webkit-animation: pulsered 1s linear infinite;
  -moz-animation: pulsered 1s linear infinite;
  -ms-animation: pulsered 1s linear infinite;
  animation: pulsered 1s linear infinite;
}

@keyframes "pulsered" {
 0% {
    background: rgba(218, 218, 218, 1);
    color : rgba(102, 102, 102, 1)
 }
 50% {
  background: rgba(218, 218, 218, 1);
  color : rgba(102, 102, 102, 1)
 }
 100% {
    background: rgba(200, 25, 25, 1);
    color : rgba(255, 255, 255, 1);
 }
}

@-moz-keyframes pulsered {
 0% {
    background: rgba(218, 218, 218, 1);
    color : rgba(200, 200, 200, 1);
 }
 50% {
  background: rgba(218, 218, 218, 1);
  color : rgba(102, 102, 102, 1)
 }
 100% {
   background: rgba(200, 25, 25, 1);
   color : rgba(200, 200, 200, 1);
 }

}

@-webkit-keyframes "pulsered" {
 0% {
    background: rgba(218, 218, 218, 1);
    color : rgba(102, 102, 102, 1)
 }
 50% {
  background: rgba(218, 218, 218, 1);
  color : rgba(102, 102, 102, 1)
 }
 100% {
    background: rgba(200, 25, 25, 1);
    color : rgba(200, 200, 200, 1);
 }

}