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

/* Global Reset */

/* colors
  #000000
  #ddb08d // light copper
  #ae7847 // dark copper
  #3f4d64 // deep blue
*/
* {
  margin: 0;
  padding: 0;
}

html, body { height: 100%; }

body {
  background-color: #000;
  color: #aaa;
  font: 14px Helvetica, Arial, sans-serif;
  font-size: small;
  text-align: center;
}

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

h1 { margin-bottom: 1em; }
p { margin: 1em 0; }

a         { color: #ddb08d; }
a:visited { color: #ae7847; }
a:hover   { color: #5f6d84; }
a:active   { color: #5f6d84; }

/*****************************************************************************/
/*
/* Home
/*
/*****************************************************************************/
.posts {
  list-style-type: none;
  margin-bottom: 2em;
}

.posts li {
  line-height: 1.75em;
}

.posts span.date {
  color: #999;
  font-family: Monaco, "Courier New", monospace;
  font-size: 80%;
}

.posts span.article {
  font-variant: small-caps;
  font-size: 120%;
}

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

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

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

.header img {
  margin-left: -164px;
  float: left;
}

.title {
  display: inline-block;
  margin-bottom: 2em;
}

.title a {
  color: #ae7847;
}

.title a:hover {
  color: #5f6d84;
}

.header a.extra {
  color: #ddb08d;
  margin-left: 1em;
}

.header a.extra:hover {
  color: #5f6d84;
}

.meta {
  color: #666;
}

.byline {
  font-style: italic;
}

.footer {
  font-size: 80%;
  color: #666;
  border-top: 4px solid #5f6d84;
  margin-top: 2em;
  overflow: hidden;
}

.footer .contact {
  float: left;
  margin-right: 3em;
}

.footer .rss {
  float: right;
}

.footer .rss img {
  border: 0;
}

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

/* standard */
.post pre {
  padding: 0 .4em;
}

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

.post code {
  color: #7f8da4;
}

.post pre code {
  border: none;
}

.post blockquote {
  margin-left: 0.85em;
  border-left: thick solid #3f4d64;
  padding-left: 0.5em;
}

.post strong {
  font-weight: bold;
  color: #3f4d64;
}

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

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

.post img {
  width: 100%;
  float: center;
}
