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

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

html, body { height: 100%; }

body {
  background-color: #FFF;
  font-family: 'Source Serif Pro', serif;
  font-weight: 300;
	background-repeat: repeat;
  text-align: center;
  
  display: grid;
  grid-template-columns: 15% auto minmax(100px, 15%);
}

.site_left {
}
.site_center {
  text-align: left;
  padding-left: 12px;
  line-height: 1.5em;
}

.site_right {
}

strong {
  font-weight: 600;
}

em {
  font-family: 'Source Serif Pro', serif;
  font-weight: 300;
  font-style: italic;
}


h1, h2, h3, h4, h5, h6 {
  font-family: 'Source Sans Pro', sans-serif;
  font-weight:700;
  font-size: larger;
  color:#333;
}

h1.title {
  font-family: 'Source Sans Pro', sans-serif;
  font-weight: normal;
}

h1.title.a {
  text-decoration: none;
  border-bottom-style: none;
}

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

a         { 
	color: inherit;
  border-bottom-style: solid;
  border-bottom-width: thin;
  border-bottom-color: rgba(0, 0, 0, 0.75);
  text-decoration: none;
}
a:hover   { 
  border-bottom-style: none;
  color: inherit; }
a:visited { 
  color: inherit;
}

#social a {
  border-bottom-style: none;
  text-decoration: none;
}
#social {
 	position: fixed;  
    top: 200px;  
    right: 10px;
  width:60px;
  border-bottom-style: none;
  text-decoration: none;
}

/*****************************************************************************/
/*
/* Home
/*
/*****************************************************************************/

.year_header {
  color: #666;
  font-family: 'Source Code Pro', sans-serif;
  font-weight: 200;
  padding-top: 40px;
  border-bottom-style: solid;
  border-bottom-width: thin;
  border-bottom-color:#EEE;
}

.posts {
  list-style-type: none;
  margin-bottom: 2em;
  margin: 0;
  padding: 0;

  display: grid;
  grid-template-columns: 70px minmax(200px, 1fr);
  column-gap: 14px;
  line-height: 1.75em;
}

.timestamp {
  font-weight: 200;
  color:#000000;
  text-align: right;

  color: #666;
  font-family: 'Source Code Pro', sans-serif;
}

.post_title {
}


.no-underline {
  text-decoration: none;
  border-bottom-style: none;
}

a.no-underline:hover {
  border-bottom-style: solid;
  border-bottom-width: thin;
  border-bottom-color: rgba(0, 0, 0, 0.75);
  text-decoration: none;
}



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


.header a {
  text-decoration: none;
}

.title {
  margin-bottom: 2em;
}

.title a {
  color: #a00;
}

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

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

.header a.extra:hover {
  color: #000;
}

.meta {
  color: #333;
  font-family: 'Source Serif Pro', serif;
  font-weight: 300;
  font-style: italic;
}

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

a.email {
	text-decoration:none;
	color: #666;
}

a.email:hover {
	text-decoration:underline;
}

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

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


pre {
  padding: 20px;
  border-radius: 10px;
}

.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;
}

.local_image {
  padding: 2px;
  vertical-align: top;
}
