body {
   margin: 30px;
   background-color: #d7d7d7;
   background-image: url(/img/bgs.jpg);
   background-size: cover;
   background-repeat: no-repeat;
}

.linenums li {
    list-style-type: decimal!important;
}

pre {
   padding: 8px;
   border-radius: 5px;
   overflow: scroll;
   overflow-y: scroll;
   overflow-x: scroll;
}

pre.prettyprint {
    overflow: scroll;
    background-color: transparent!important;
}

.title h1 {
   text-align: center;
   color: #666;
   font-family: 'Ubuntu', sans-serif;
   font-weight: 300;
   font-size: 28px;
}

.info {
  min-height: 100%;
  min-width: 100%;
  background-color: #aeaeae;
}


/* modal CSS */

/* Divider */
hr.divider { 
  border: 0; 
  height: 1px; 
  margin: 20px 0px;
  background-image: -webkit-linear-gradient(left, #f0f0f0, #8c8b8b, #f0f0f0);
  background-image: -moz-linear-gradient(left, #f0f0f0, #8c8b8b, #f0f0f0);
  background-image: -ms-linear-gradient(left, #f0f0f0, #8c8b8b, #f0f0f0);
  background-image: -o-linear-gradient(left, #f0f0f0, #8c8b8b, #f0f0f0); 
}

/* Outer */
.popup {
    width:100%;
    min-width: 100%;
    height:100%;
    min-height: 100%;
    display:none;
    position:fixed;
    top:0px;
    left:0px;
    background:rgba(0,0,0,0.75);
    font-family: 'Ubuntu', sans-serif;
}
 
/* Inner */
.popup-inner {
    max-width:100%;
    width:98%;
    max-height: 100%;
    height: 98%;
    padding:100px;
    position:absolute;
    top:50%;
    left:50%;
    -webkit-transform:translate(-50%, -50%);
    transform:translate(-50%, -50%);
    box-shadow:0px 2px 6px rgba(0,0,0,1);
    border-radius:3px;
    background: rgba(255,255,255,0.8);
}

.popup-content {
  display: inline-block;
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  width: 60%;
  height: 50%;
  background-color: rgba(255,255,255,0.5);
  padding: 40px;
  margin: auto;
  color: #333;
  border-radius: 7px;
  -webkit-box-shadow: 5px 5px 10px 2px rgba(0,0,0,0.1);
  box-shadow: 5px 5px 10px 2px rgba(0,0,0,0.1);
}

.popup-content h1 {
  font-family: 'Lato', sans-serif;
  color: #3f9ed0;
  font-size: 25px;
}

.popup-content h2 {
  font-family: 'Lato', sans-serif;
  color: #3f9ed0;
  font-size: 20px;
}

.popup-content h5 {
  font-family: 'Ubuntu', sans-serif;
  font-weight: 300;
  font-size: 12px;
}

.popup-content p {
  font-family: 'Ubuntu', sans-serif;
  font-weight: 300;
  font-size: 16px;
}

.close-text {
  font-family: 'Ubuntu', sans-serif;
  font-weight: 300;
  font-size: 10px;
  color: rgba(0,0,0,0.3);
}
 
/* Close Button */
.popup-close {
    width:30px;
    height:30px;
    display:inline-block;
    position:absolute;
    top:25px;
    right:25px;
    transition:ease 0.5s all;
    -webkit-transform:translate(50%, -50%);
    transform:translate(50%, -50%);
    border-radius:1000px;
    background:rgba(0,0,0,0);
    font-family: 'Ubuntu', Sans-Serif;
    font-size:30px;
    text-align:center;
    line-height:22px;
    color: rgba(0,0,0,0.5);
    text-decoration: none;
}
 
.popup-close:hover {
    /*-webkit-transform:translate(50%, -50%) rotate(180deg);
    transform:translate(50%, -50%) rotate(180deg);*/
    color: rgba(0,0,0,1);
    text-decoration:none;
}


/*///// Footer /////*/

.footer {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: transparent;
  width: 300px;
  height: 50px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 10px;
  text-decoration: none;
  font-family: 'Ubuntu', sans-serif;
}
#footer a {
  text-decoration:none;
  color: #3f9ed0;
  font-size: 10px;
}
#footer a:visited {
  color: #3f9ed0;
}
#footer a:hover {
  color: #3f9ed0;
}
#footer a:actve {
  color: #3f9ed0;
}


/*////////// Media Queries //////////*/


    /* Custom, iPhone Retina */ 
    @media only screen and (min-width : 320px) {
         pre {
         margin-top: 9%;
         margin-left: 4%;
         margin-right: 5%;
        }
        body {
          margin: 30px;
          background-color: #d7d7d7;
          background-image: url(/img/bgs-mob.jpg);
          background-size: cover;
          background-repeat: no-repeat;
        } 
        .popup-content {
          height:72%;
        }         
    }

    /* Extra Small Devices, Portrait Phones */ 
    @media only screen and (min-width : 480px) {
         pre {
         margin-top: 9%;
         margin-left: 4%;
         margin-right: 5%;
        }
        body {
          margin: 30px;
          background-color: #d7d7d7;
          background-image: url(/img/bgs-mob.jpg);
          background-size: cover;
          background-repeat: no-repeat;
        }
        .popup-content {
          height:72%;
        }         
    }

    /* Small Devices, Landscape Phones and Tablets, Portrait Tablets, Small Desktops */
    @media only screen and (min-width : 768px) {
        pre {
         margin-top: 9%;
         margin-left: 4%;
         margin-right: 5%;
        }
        body {
          margin: 30px;
          background-color: #d7d7d7;
          background-image: url(/img/bgs.jpg);
          background-size: cover;
          background-repeat: no-repeat;
        }
        .popup-content {
          height:50%;
        } 
    }

    /* Medium Devices, Landscape Tablets, Laptops, Desktops */
    @media only screen and (min-width : 992px) {
      pre {
         margin-top: 9%;
         margin-left: 4%;
         margin-right: 5%;
      }
        body {
          margin: 30px;
          background-color: #d7d7d7;
          background-image: url(/img/bgs.jpg);
          background-size: cover;
          background-repeat: no-repeat;
        }
        .popup-content {
          height:50%;
        }       
    }

    /* Large Devices, Large Desktops, Wide Screens */
    @media only screen and (min-width : 1200px) {
      pre {
         margin-top: 9%;
         margin-left: 4%;
         margin-right: 5%;
      }
        body {
          margin: 30px;
          background-color: #d7d7d7;
          background-image: url(/img/bgs.jpg);
          background-size: cover;
          background-repeat: no-repeat;
        }
        .popup-content {
          height:45%;
        }       
    }

