/*
Theme Name: Blogging Time
Theme URI: http://talk.jpdempsey.net
Description: An early attempt at incorpating Wordpress
Author: jpdempsey
Version: 1.0
Tags: first, simply, minimalistic

License: N/A
License URI: N/A

General comments: An early attempt at creating very clean code from the very bottom and integrating Wordpress
                  commands as to take avantage of the great blogging back-end.
*/


/* Table of Contents
--------------------------------------------------
  1. Scaffolding
  2. Fonts
-------------------------------------------------- */




/* 1. Scaffolding
-------------------------------------------------- */

  html,
  body {
      height: 100%;             /* The html and body elements cannot have any padding or margin. */
  }

  #wrap {                       /* Wrapper for page content to push down footer */
    min-height: 100%;
    height: auto !important;
    height: 100%;
    margin: 0 auto -60px;       /* Negative indent footer by it's height */
  }

  #push,
  #footer {                     /* Set the fixed height of the footer here */
    height: 60px;
  }

  #footer {
    background-color: #f5f5f5;
  }

  @media (max-width: 767px) {   /* Lastly, apply responsive CSS fixes as necessary */
    #footer {
      margin-left: -20px;       /* Stretches footer to edges while keeping inside roomy */
      margin-right: -20px;
      padding-left: 20px;
      padding-right: 20px;
    }
  }

  #wrap > .container {
    padding-top: 60px;
  }

  .container .credit {
    margin: 20px 0;
  }

  code {
    font-size: 80%;
  }


/* 2. Fonts
-------------------------------------------------- */
  h1 {font: 400 40px/1.3 'Bree Serif', Georgia, serif; color: #7ebea3;}
  p {font: 400 14px/1.6 'Open Sans', Verdana, Helvetica, sans-serif;}

