/* Base */
/* ----------------------------------------------------------*/

* {
  margin: 0;
  padding: 0;
}

html, body { height: 100%; }

body {
  font-family: Helvetica, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.5;
  font-weight: 300;
}

h1, h2, h3, h4, h5, h6 { font-size: 100%; font-weight: 400; }

a         { color: #2a7ae2; text-decoration: none; }
a:hover   { color: #000; text-decoration: underline; }
a:visited { color: #205caa; }

.dark a         { color: #80A8DC; text-decoration: none; }
.dark a:hover   { color: #fff; text-decoration: underline; }
.dark a:visited { color: #80A8DC; }

/* Utility */

.wrap:before,
.wrap:after { content:""; display:table; }
.wrap:after { clear: both; }
.wrap {
  padding: 0 30px;
  margin: 0 auto;
  zoom: 1;
}


/* Layout Styles */
/* ----------------------------------------------------------*/

/* Site header */

.site-title,
.site-title:hover,
.site-title:visited {
  display: block;
  color: #333;
  font-size: 26px;
  letter-spacing: -1px;
  line-height: 56px;
  position: relative;
  z-index: 1;
  text-decoration: none;
  float: left;
  font-variant: small-caps;
}

.site-title span {
  color: #333;
}

.header-right {
  float: right;
}

.header-right a {
  line-height: 56px;
  text-decoration: none !important;
  font-size: 12px;
}

.site-feed img {
  margin-left: 12px;
  vertical-align: middle;
}


/* Site footer */

.site-footer {
  border-top: 1px solid #e8e8e8;
  background: #f5f5f5;
  padding: 50px 0 30px 0;
}

.site-header .wrap, .site-footer .wrap {
  max-width: 950px;
}

.footer-right {
  float: right;
}

.footer-heading {
  font-size: 18px;
  font-weight: 300;
  letter-spacing: -.5px;
  margin-bottom: 15px;
  font-variant: small-caps;
}

.footer-heading a {
  font-variant: small-caps;
  text-decoration: none;
}

.site-footer ul { list-style: none; margin-bottom: 10px; }

.site-footer tt { color: #666; }

.site-footer li {
  display: inline-block;
  margin-right: 10px;
}

.site-footer li,
.site-footer p {
  font-size: 15px;
  letter-spacing: -.3px;
  color: #828282;
}

.site-footer .copyright {
  text-align: center;
  font-size: 12px;
  margin-top: 20px;
}
.site-footer .copyright img {
  margin-top: 10px;
}

/* Page Content styles */
/* ----------------------------------------------------------*/

.page-content {
  background-color: #fff;
  max-width: 950px;
  border-top: 6px solid #f3f3f3;
  margin: 0 auto;
  padding: 40px 0;
}

.dark { background-color: #333; border-top: 5px solid #D5D5D5; color: #f3f3f3; }

.dark .page-content {
  background-color: #333;
  border: none;
}

/* Home styles */
/* ----------------------------------------------------------*/

.home h1 { margin-bottom: 25px; }
.home .post-link h1 { margin-bottom: 0; }

.posts { list-style-type: none; }

.posts li { margin-bottom: 30px; }

.post-content li { margin-bottom: 5px; }

.posts .post-link {
  font-size: 24px;
  letter-spacing: -1px;
  line-height: 1;
}

.posts .post-date, .posts .post-meta {
  font-size: 15px;
  color: #818181;
}
.posts .post-date {
  display: block;
}
.posts .post-meta {
  margin-left: 5px;
}

/* Post styles */
/* ----------------------------------------------------------*/

.post-header { margin: 10px 0 30px; }

.post-header h1 {
  font-size: 42px;
  letter-spacing: -1.75px;
  line-height: 1;
  font-weight: 300;
}

.post-header .meta {
  font-size: 15px;
  color: #818181;
  margin-top: 10px;
}

.post-content { margin: 20px 0; }

.post-content > *, .post-content li > * { margin: 20px 0; }

.post-content h1,
.post-content h2,
.post-content h3,
.post-content h4,
.post-content h5,
.post-content h6 {
  line-height: 1;
  font-weight: 300;
  margin: 40px 0 20px;
}

.post-content h2 {
  font-size: 32px;
  letter-spacing: -1.25px;
}

.post-content h3 {
  font-size: 26px;
  letter-spacing: -1px;
}

.post-content h4 {
  font-size: 20px;
  letter-spacing: -1px;
}

.post-content blockquote {
  border-left: 4px solid #e8e8e8;
  padding-left: 20px;
  font-size: 16px;
  opacity: .6;
  letter-spacing: -0.5px;
  margin: 30px 0;
}

.post-content ul,
.post-content ol { padding-left: 10px; }

.post pre,
.post code {
  border: 1px solid #d5d5e9;
  background-color: #eef;
  padding: 8px 12px;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  font-size: 15px;
  overflow:scroll;
}

.post code { padding: 1px 5px; }

.post ul,
.post ol { margin-left: 1.35em; }

.post pre code {
  border: 0;
  padding-right: 0;
  padding-left: 0;
}

/* terminal */
.post pre.terminal {
  border: 1px solid #000;
  background-color: #333;
  color: #FFF;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
}

.post pre.terminal code { background-color: #333; }

/* Syntax highlighting styles */
/* ----------------------------------------------------------*/

.highlight  { background: #ffffff; }
.highlight .c { color: #999988; font-style: italic } /* Comment */
.highlight .err { color: #a61717; background-color: #e3d2d2 } /* Error */
.highlight .k { font-weight: bold } /* Keyword */
.highlight .o { font-weight: bold } /* Operator */
.highlight .cm { color: #999988; font-style: italic } /* Comment.Multiline */
.highlight .cp { color: #999999; font-weight: bold } /* Comment.Preproc */
.highlight .c1 { color: #999988; font-style: italic } /* Comment.Single */
.highlight .cs { color: #999999; font-weight: bold; font-style: italic } /* Comment.Special */
.highlight .gd { color: #000000; background-color: #ffdddd } /* Generic.Deleted */
.highlight .gd .x { color: #000000; background-color: #ffaaaa } /* Generic.Deleted.Specific */
.highlight .ge { font-style: italic } /* Generic.Emph */
.highlight .gr { color: #aa0000 } /* Generic.Error */
.highlight .gh { color: #999999 } /* Generic.Heading */
.highlight .gi { color: #000000; background-color: #ddffdd } /* Generic.Inserted */
.highlight .gi .x { color: #000000; background-color: #aaffaa } /* Generic.Inserted.Specific */
.highlight .go { color: #888888 } /* Generic.Output */
.highlight .gp { color: #555555 } /* Generic.Prompt */
.highlight .gs { font-weight: bold } /* Generic.Strong */
.highlight .gu { color: #aaaaaa } /* Generic.Subheading */
.highlight .gt { color: #aa0000 } /* Generic.Traceback */
.highlight .kc { font-weight: bold } /* Keyword.Constant */
.highlight .kd { font-weight: bold } /* Keyword.Declaration */
.highlight .kp { font-weight: bold } /* Keyword.Pseudo */
.highlight .kr { font-weight: bold } /* Keyword.Reserved */
.highlight .kt { color: #445588; font-weight: bold } /* Keyword.Type */
.highlight .m { color: #009999 } /* Literal.Number */
.highlight .s { color: #d14 } /* Literal.String */
.highlight .na { color: #008080 } /* Name.Attribute */
.highlight .nb { color: #0086B3 } /* Name.Builtin */
.highlight .nc { color: #445588; font-weight: bold } /* Name.Class */
.highlight .no { color: #008080 } /* Name.Constant */
.highlight .ni { color: #800080 } /* Name.Entity */
.highlight .ne { color: #990000; font-weight: bold } /* Name.Exception */
.highlight .nf { color: #990000; font-weight: bold } /* Name.Function */
.highlight .nn { color: #555555 } /* Name.Namespace */
.highlight .nt { color: #000080 } /* Name.Tag */
.highlight .nv { color: #008080 } /* Name.Variable */
.highlight .ow { font-weight: bold } /* Operator.Word */
.highlight .w { color: #bbbbbb } /* Text.Whitespace */
.highlight .mf { color: #009999 } /* Literal.Number.Float */
.highlight .mh { color: #009999 } /* Literal.Number.Hex */
.highlight .mi { color: #009999 } /* Literal.Number.Integer */
.highlight .mo { color: #009999 } /* Literal.Number.Oct */
.highlight .sb { color: #d14 } /* Literal.String.Backtick */
.highlight .sc { color: #d14 } /* Literal.String.Char */
.highlight .sd { color: #d14 } /* Literal.String.Doc */
.highlight .s2 { color: #d14 } /* Literal.String.Double */
.highlight .se { color: #d14 } /* Literal.String.Escape */
.highlight .sh { color: #d14 } /* Literal.String.Heredoc */
.highlight .si { color: #d14 } /* Literal.String.Interpol */
.highlight .sx { color: #d14 } /* Literal.String.Other */
.highlight .sr { color: #009926 } /* Literal.String.Regex */
.highlight .s1 { color: #d14 } /* Literal.String.Single */
.highlight .ss { color: #990073 } /* Literal.String.Symbol */
.highlight .bp { color: #999999 } /* Name.Builtin.Pseudo */
.highlight .vc { color: #008080 } /* Name.Variable.Class */
.highlight .vg { color: #008080 } /* Name.Variable.Global */
.highlight .vi { color: #008080 } /* Name.Variable.Instance */
.highlight .il { color: #009999 } /* Literal.Number.Integer.Long */


/* media queries */
/* ----------------------------------------------------------*/

@media screen and (max-width: 600px) {

  .wrap { padding: 0 12px; }

  .post-header h1 { font-size: 36px; }
  .post-content h2 { font-size: 28px; }
  .post-content h3 { font-size: 22px; }
  .post-content h4 { font-size: 18px; }
  .post-content blockquote { padding-left: 10px; }
  .post-content ul,
  .post-content ol { padding-left: 10px; }

}

.banner {
   margin-bottom: 60px;
   display: block;
}
.banner img {
   border: 1px solid #ccc;
   margin: 0 auto;
   display: block;
}

nav {
  text-align: center;
  margin: 0 auto;
  margin-bottom: 60px;
  font-size: large;
  max-width: 1000px;
}

nav .nav-category {
  padding: 10px 30px;
  font-size: small;
  margin: 10px 0;
}
nav hr {
    width: 70%;
    margin: 0 auto;
    border: 1px solid #80A8DC;
    margin-bottom: 15px;
    border-radius: 5px;
}
.nav-category b {
  color: #aaa;
  font-weight: normal;
}


nav span { white-space: nowrap; }
nav span.right {  float: right; }
nav span.left {  float: left; }

nav a {
    text-decoration: none !important;
}

.archive-title {
    margin-bottom: 50px;
    font-size: x-large;
}

.archive-title .site-feed {
    float: right;
    line-height: 20px;
    font-size: 18px;
    text-decoration: none;
}

.pagination {
    text-align: center;
    margin-top: 20px;
}

.pagination > * {
    margin: 0 3px;
    padding: 2px;
}

.pagination em {
    font-weight: bold;
}

.homepage {
   color: #ccc !important;
   font-size: small;
}


.post-comments {
    padding: 30px 10px;
    border-top: 2px solid #000;
    margin: 60px 0;
    border-bottom: 2px solid #000;
}
.no-comments {
   border-top: none;
   padding-top: 0px;
}

.post-comments h1 {
    font-size: large;
    font-weight: bold;
    margin-bottom: 20px;
}

.comment-link {
    font-size: x-large;
    text-decoration: none !important;
    font-weight: bold;
    color: #D14;
}
a.comment-link {
    float: right;
}
.no-comments .comment-link {
    font-size: large;
    text-align: center;    
}

.comment {
    padding: 15px;
    border-radius: 10px;
    margin-top: 20px;
}
.comment.owner .comment-header, .comment.owner .comment-header a  {
    color: #D14 !important;
}
.comment.even {
    background: #f3f3f3;
}

.comment-header {
    margin-bottom: 15px;
    font-size: large;
    font-weight: bold;
}

.comment-header a {
    color: black;
    text-decoration: none !important;
}

.comment-date {
    float: right;
    font-weight: normal;
    color: #666 !important;
}

.comment-form {
   max-width: 670px;
   position: relative;
}

.comment-form label {
   display: block;
   font-weight: bold;
}

.comment-form .input {
   margin-right: 10px;
   float: left;
}
.comment-form .input.url {
   margin-right: 0;
}
.comment-form input, .comment-form button {
   font-size: large;
   width: 200px;
   padding: 6px;
}

.comment-form textarea {
    padding: 10px;
    width: 100%;
    height: 120px;
}

.comment-form .textarea {
    margin: 20px 0;
    padding-right: 22px;
}

.comment-form button {
  float: right;
}

.page-content img {
  max-width: 100%;
}
