/*****************************************************************************/
/*
/* Common
/*
/*****************************************************************************/

@import url("brandfont.css");

/* Global Reset */
* {
  margin: 0;
  padding: 0;
}

html, body { height: 100%; }

body {
  background-color: #FFF;
  font-family: 'Open Sans', Helvetica, Arial, sans-serif;
  font-size: 1.0em;
  text-align: center;
}

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

p { margin: 1em 0; }

/*****************************************************************************/
/*
/* Site
/*
/*****************************************************************************/

a         { color: #000000; }
a:hover   { color: #444444; }

h1 {
  font-size: 200%;
}

h2 {
  font-size: 125%;
}

figure {
  padding: 1em 0;
}

figcaption {
  font-size: 70%;
  font-weight: normal;
  color: #999;
  margin-top: -2em;
}

blockquote {
  background: #eee;
  border-left: 10px solid #ccc;
  /*margin: 1.5em 10px;*/
  padding: 0.5em 10px;
}

.site {
  font-size: 115%;
  text-align: left;
  width: 30em;
  margin: 3em auto 2em;
  line-height: 1.5em;
}

.header a {
  font-weight: bold;
  text-decoration: none;
}

.header h1.title {
  display: inline-block;
}

.nav {
  margin-top: 1em;
}

ul.nav > li {
  display: inline;
  list-style: none;
}

.nav li + li:before{
    content: " / ";
    padding: 0 10px;
}

.site .header ul.nav > li > a {
  font-weight: normal;
  border-bottom: 1px solid #ccc;
}

.content ul.posts {
  margin: 2em 0;
}

footer {
  padding-bottom: 1em;
}

footer li {
  display: inline;
}

.content {
  margin: 2em 0;
}

.content ul {
  margin: 0;
}

.content ul > li {
  list-style-type: none;
  margin: 1.5em 0 0 0;
}

.content a {
  color: #333333;
}

.content a i {
  text-decoration: none;
  margin: 1em 1em 1em 0;
}

.date {
  font-size: 0.9em;
  margin: 0.5em 0;
}

.footnotes {
  margin-top: 3em;
  border-top: 1px solid #ccc;
}

code {
  word-wrap: break-word;
}

/* Smaller than standard 960 (devices and browsers) */
@media only screen and (max-width: 680px) {
  .site {
    margin: 2em 0;
    padding: 0 1em;
    width: 90%;
  }
}

/*****************************************************************************/
/*
/* Posts
/*
/*****************************************************************************/

/* standard */
.post {
  margin-bottom: 5em;
}

.post pre {
  border: 1px solid #ddd;
  background-color: #eef;
  padding: 0 .4em;
}

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

.post code {
  border: 1px solid #ddd;
  background-color: #eef;
  padding: 0 .2em;
}

.post pre code {
  border: none;
  font-size: 80%;
}

.post img {
  width: 100%;
  border-bottom: 1px solid #ccc;
  padding-bottom: 1em;
}

.post img.half {
  width: 50%;
}

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

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

/*****************************************************************************/
/*
/* Alignment
/*
/*****************************************************************************/
.left {
  float: left;
}

.right {
  float: right;
}

::marker {
  content: "";
}