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

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

html, body { height: 100%; }

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

h1 {
  font-size: 110%;
  color: black;
}

h2 {
  font-size: 105%;
  color: black;
}

h3, h4, h5, h6 {
  font-size: 100%;
  color: black;
}

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

a         { color: #00a; }
a:hover   { color: #000; }
a:visited { color: #a0a; }

blockquote {
  border-left: 2px solid #CCA;
  color: #555;
  margin: 0 1em;
  padding: 0 1em;
}

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

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

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

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

.site {
  font-size: 115%;
  text-align: left;
  min-width: 25em;
  max-width: 55em;
  padding: 0 1em;
  margin: 0 auto;
  line-height: 1.5em;
}

#site_banner {
  min-width: 20em;
  max-width: 100%;
}

.title {
  font-size: 20pt;
}

.title a {
  color: #000;
}

.title a:hover {
  color: #000;
}

.header img {
  filter: contrast(1);
  -webkit-filter: contrast(1);
  transition: 2s;
}
.header img:hover {
  filter: contrast(1.5);
  -webkit-filter: contrast(1.5);
  transition: 2s;
}

.meta {
  color: #aaa;
  margin-top: 0.5em;
}

.footer-container {
  background-color: #ddd;
  border-top: 1px solid black;
}

.footer {
  font-size: 80%;
  color: #666;
  overflow: hidden;
}
.footer .contact:hover {
  color: #000;
}
.footer .license:hover {
  color: #000;
}

.footer .contact {
  float: left;
  line-height: 1.8;
  margin: 0.35em 0;
}

.footer a {
  color: #8085C1;
}
.footer .contact:hover a {
  color: #00E;
}
.footer .license:hover a {
  color: #00E;
}

.footer .license {
  float: right;
  margin-top: 0.5em;
  max-width: 18em;
  line-height: 1.1;
  font-size: 9px;
}

.footer .contact img {
  margin: 3px 2px -4px 2px;
  padding: 0;
  opacity: 0.4;
}
.footer .contact:hover img {
  opacity: 1;
}

.footer .license img {
  opacity: 0.4;
}
.footer .license:hover img {
  opacity: 1;
}

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

.posts_list_title {
  margin-top: 1em;
  margin-bottom: 0.1em;
  font-size: 16pt;
}

.post_title {
  margin-top: 0.2em;
  margin-bottom: 0.1em;
  margin-left: 0;
  font-size: 20pt;
  color: #000;
}

/* standard */
.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;
}

.post pre code {
  border: none;
}

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

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