/* ==========================================================================
   Table of Contents
   ========================================================================== */

/*

    0.  Includes
    1.  Icons
    2.  General
    3.  Utilities
    4.  General
    5.  Single Post
    6.  Third Party Elements
    7.  Pagination
    8.  Footer
    9. Media Queries

 */

/* ==========================================================================
   0. Includes - Ground zero
   ========================================================================== */

@import url(normalize.css);


/* ==========================================================================
   1. Icons - Sets up the icon font and respective classes
   ========================================================================== */

/* Import the font file with the icons in it */
@font-face {
    font-family: 'icons';
    src:url('../fonts/icons.eot');
    src:url('../fonts/icons.eot?') format('embedded-opentype'),
        url('../fonts/icons.woff') format('woff'),
        url('../fonts/icons.ttf') format('truetype'),
        url('../fonts/icons.svg') format('svg');
    font-weight: normal;
    font-style: normal;
}

/* Apply these base styles to all icons */
.icon-ghost, .icon-feed, .icon-twitter, .icon-google-plus, .icon-facebook {
    font-family: 'icons';
    speak: none;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    text-decoration: none;
}

/* Each icon is created by inserting the corret character into the 
   content of the :before pseudo element. Like a boss. */
.icon-ghost:before {
    content: "\e000";
}
.icon-feed:before {
    content: "\e001";
}
.icon-twitter:before {
    content: "\e002";
}
.icon-google-plus:before {
    content: "\e003";
}
.icon-facebook:before {
    content: "\e004";
}


/* ==========================================================================
   2. General - Setting up some base styles
   ========================================================================== */

html {
    height: 100%;
    max-height: 100%;
}

body {
    height: 100%;
    max-height: 100%;
    color: #5a6165;
    font: normal 11px menlo,'andale mono','courier new',sans-serif;
    line-height: 155%;
    position: relative;
    }

	/* Background patterns */
	body:after,
	body:before {
		z-index: -1;
	    display: block;
	    content: "";
		-moz-transform: scale(2) rotate(30deg) translate(50px);
		-webkit-transform: scale(1.2) rotate(30deg) translate(50px);
		-o-transform: scale(2) rotate(30deg) translate(50px);
		transform: scale(2) rotate(30deg) translate(50px);
	    position: fixed;	
	} 
	body:after {
	    width: 500px;
	    height: 500px;
	    top: -450px;
	    left: -200px;	
		-moz-box-shadow:    0 0 50px rgba(0,0,0,0.05);
		-webkit-box-shadow: 0 0 50px rgba(0,0,0,0.05);
		box-shadow:         0 0 50px rgba(0,0,0,0.05);
	   }
	
	body:before {
	    width: 1000px;
	    height: 1000px;
	    top: 530px;
	    left: -120px;
		-moz-box-shadow:    inset 0 0 50px rgba(0,0,0,0.05);
		-webkit-box-shadow: inset 0 0 50px rgba(0,0,0,0.05);
		box-shadow:         inset 0 0 50px rgba(0,0,0,0.05);
	}

::-moz-selection {
    color: #222;
    background: #e9e9e9;
    text-shadow: none;
}

::selection {
    color: #222;
    background: #e9e9e9;
    text-shadow: none;
}

h1, h2, h3,
h4, h5, h6 {
    text-rendering: optimizeLegibility;
    line-height: 1;
    margin-top: 0;
    font-weight: normal;
    font-size: 11px;
}

.post-content h2 {
	margin: 1.8em 0 1.8em -1.15em;
    padding: 0 0 0 0.9em;
    border-left: #5a6165 0.25em solid;
}
.post-content h3 {
	margin: 2em 0 1.6em 0;
    padding: 0 0 0 0.9em;
    border-left: #c8c8c8 0.4em double;
}


a {
    color: #4a4a4a;
    transition: color ease 0.3s;
}

a:hover {
    color: #acac87;
}


h1 a, h2 a, h3 a,
h4 a, h5 a, h6 a {
    color: #50585D;
}


p, ul, ol {
    margin: 1.6em 0;
}

ol ol, ul ul,
ul ol, ol ul {
    margin: 0.4em 0;
}

hr {
    display: block;
    height: 1px;
    border: 0;
    border-top: 1px solid #efefef;
    margin: 3.2em 0;
    padding: 0;
}

blockquote {
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    position: relative;
    padding: 1em;
}
blockquote:before {
	content:"\201C";
	position: absolute;
	left: 0;
	top: 0.6em;
	}

blockquote p {
    margin: 0em 0;
    font-style: italic;
}

blockquote small {
    display: inline-block;
    margin: 0.8em 0 0.8em 1.5em;;
    color: #ccc;
}

blockquote small:before { content: '\2014 \00A0'; }

blockquote cite {
    font-weight:bold;
}

blockquote cite a { font-weight: normal; }


dl {
    margin: 1.6em 0;
}

dl dt {
    float: left;
    width: 180px;
    overflow: hidden;
    clear: left;
    text-align: right;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-weight: bold;
    margin-bottom: 1em
}

dl dd {
    margin-left: 200px;
    margin-bottom: 1em
}

mark {
    background-color: #ffc336;
}

code, tt {
    padding: 1px 3px;
    font-family: Inconsolata, monospace, sans-serif;
    white-space: pre;
    border: 1px solid #E3EDF3;
    background: #F7FAFB;
    border-radius: 2px;
}

pre {
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    margin: 1.6em 0;
    border: 1px solid #E3EDF3;
    width: 100%;
    padding: 10px;
    font-family: Inconsolata, monospace, sans-serif;
    white-space: pre;
    overflow: auto;
    background: #F7FAFB;
    border-radius: 3px;
}

pre code, tt {
    font-size: inherit;
    white-space: -moz-pre-wrap;
    white-space: pre-wrap;
    background: transparent;
    border: none;
    padding: 0;
}

kbd {
    display: inline-block;
    margin-bottom: 0.4em;
    padding: 1px 8px;
    border: #ccc 1px solid;
    color: #666;
    text-shadow: #fff 0 1px 0;
    font-weight: bold;
    background: #f4f4f4;
    border-radius: 4px;
    box-shadow: 
        0 1px 0 rgba(0, 0, 0, 0.2), 
        0 1px 0 0 #fff inset;
}

table {
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    margin: 1.6em 0;
    width:100%;
    max-width: 100%;
    background-color: transparent;
}

table th,
table td {
    padding: 8px;
    line-height: 20px;
    text-align: left;
    vertical-align: top;
    border-top: 1px solid #efefef;
}

table th { color: #000; }

table caption + thead tr:first-child th,
table caption + thead tr:first-child td,
table colgroup + thead tr:first-child th,
table colgroup + thead tr:first-child td,
table thead:first-child tr:first-child th,
table thead:first-child tr:first-child td {
    border-top: 0;
}

table tbody + tbody { border-top: 2px solid #efefef; }

table table table { background-color: #fff; }

table tbody > tr:nth-child(odd) > td,
table tbody > tr:nth-child(odd) > th {
    background-color: #f6f6f6;
}

table.plain {
    tbody > tr:nth-child(odd) > td,
    tbody > tr:nth-child(odd) > th {
        background: transparent;
    }
}


/* ==========================================================================
   3. Utilities - These things get used a lot
   ========================================================================== */

/* Hides shit */
.hidden {
    text-indent: -9999px;
    visibility: hidden;
    display: none;
}


/* ==========================================================================
   4. General - The main styles for the the theme
   ========================================================================== */

.wrapper {
	z-index: 3;
	width: 94%;
	max-width: 860px;
	margin: 40px auto;
}

main {
	float: right;
	width: 72%;
	padding: 20px 0 0 0;
}

header#site-head {
    padding: 0 0 0 0;
    width: 25%;
    float: left;
    }


#blog-logo img {
    display: block;
    width: 50%;
    margin: 0 auto;
    line-height: 0;
}

#back {
    color: rgba(0,0,0,0.2);
    position: fixed;
    top: 8px;
    left: 8px;
    padding: 6px;
}

.blog-title {
	text-align: center;
	font-family: 'League Script', cursive;
	font-weight: bold;
	color: #5a6165;
	font-size: 38px;
	line-height: 1;
	margin: 0 0 5px 0;
	}
.blog-title a { text-decoration: none;}

.blog-description {
    margin: 0;
    color: #999;
    font-size: 10px;
    text-align: center;
}



.post {
    position: relative;
    padding-bottom: 2rem;
    margin-bottom: 2rem;
    word-break: break-word;
    hyphens: auto;
}
.post:after {
    display: block;
    content: "";
    width: 4px;
    height: 4px;
    border: #E7EEF2 1px solid;
    background: #E7EEF2;
    position: absolute;
    bottom: -5px;
    left: 50%;
    margin-left: -5px;
    -webkit-border-radius: 100%;
    -moz-border-radius: 100%;
    border-radius: 100%;
}

.post-header {
    padding: 0 0 0.8rem 0;
    margin: 0 0 2rem 0;
    border-bottom: #e3e7ea 1px solid;
	position: relative;
}
.post-header span.post-meta {
	position: absolute;
	right: 0;
	top: 0 ;
	font-size: 10px;
	color: #bcc0c2;
}
.post-title {
	padding: 0 5rem 0 0;
	margin: 0;
}

.post-title a {
    text-decoration: none;
}

.post-excerpt p {
    margin: 1.6rem 0 0 0;
}



.post-meta a {
    text-decoration: none;
}

.post-meta a:hover {
    text-decoration: underline;
}

.user-meta {
    position: relative;
    padding: 0.3rem 40px 0 100px;
    min-height: 77px;
}

.user-image {
    position: absolute;
    top: 0;
    left: 0;
}

.user-name {
    display: block;
    font-weight: bold;
}

.user-bio {
    display: block;
    max-width: 440px;
}

.publish-meta {
    position: absolute;
    top: 0;
    right: 0;
    padding: 4.3rem 0 4rem 0;
    text-align: right;
}

.publish-heading {
    display: block;
    font-weight: bold;
}

.publish-date {
    display: block;
}

/* ==========================================================================
   5. Single Post - When you click on an individual post
   ========================================================================== */

/* Tweak the .post wrapper style */
.post-template .post {
    margin-top: 0;
    border-bottom: none;
    padding-bottom: 0;
}

/* Kill that stylish little circle that was on the border, too */
.post-template .post:after {
    display: none;
}


/* Keep large images within the bounds of the post-width */
.post-content img {
    display: block;
    max-width: 100%;
    margin: 0;
}

/* The author credit area after the post */
.post-footer {
    position: relative;
    margin: 4rem 0 0 0;
    padding: 0 0 0 0;
    border-top: #EBF2F6 1px solid;
    border-bottom: #EBF2F6 1px solid;
}

.post-footer h4 {
    padding: 0 0 0 0;
}

.post-footer p {
    margin: 1rem 0 0 0;
}

.post-footer .author {
    margin-right: 180px;
    border-right: #EBF2F6 1px solid;
    padding: 2rem 0 1rem 0;
}

.post-footer .share {
    position: absolute;
    top: 1.2rem;
    right: 0;
    width: 140px;
}

.post-footer .share a {
    display: inline-block;
    margin: 0rem 1.6rem 1.6rem 0;
    color: #515151;
}

.post-footer .share a:hover {
    color: #50585D;
}


/* ==========================================================================
   6. Third Party Elements - Embeds from other services
   ========================================================================== */

/* Github */

.gist table {
    margin: 0;
}

.gist .line-number {
    min-width: 25px;
}


/* ==========================================================================
   7. Pagination - Tools to let you flick between pages
   ========================================================================== */

/* The main wrapper for our pagination links */
.pagination {
    position: relative;
    width: 80%;
    max-width: 700px;
    margin: 4rem auto;
    text-align: center;
}

.pagination a {
    color: #9EABB3;
}

/* Push the previous/next links out to the left/right */
.older-posts,
.newer-posts {
    position: absolute;
    display: inline-block;
    padding: 0 15px;
    border: #EBF2F6 2px solid;
    text-decoration: none;
    border-radius: 30px;
    transition: border ease 0.3s;
}

.older-posts {
    right: 0;
}

.page-number {
    display: inline-block;
    padding: 2px 0;
}

.newer-posts {
    left: 0;
}

.older-posts:hover,
.newer-posts:hover {
    border-color: #9EABB3;
}


/* ==========================================================================
   8. Footer - The bottom of every page
   ========================================================================== */

.site-footer {
	clear: both;
    position: relative;
    margin: 8rem 0 0 0;
    padding: 2rem 0;
    text-align: right;
    font-size: 0.8em;
}

.site-footer a {
    text-decoration: none;
}

.site-footer a:hover {
    color: #50585D;
}

.poweredby .icon-ghost {
    font-weight: 700;
    text-decoration: none;
}

.poweredby .icon-ghost:hover {
    text-decoration: none;
}

.poweredby .icon-ghost:before {
    margin-right: 0.2em;
}

/* The subscribe icon on the footer */
.subscribe {
	
}

/* The RSS icon, inserted via icon font */
.subscribe:before {
    color: #50585D;
    margin: 0 3px 0 0;
}


/* ==========================================================================
   9. Media Queries - Smaller than 767px
   ========================================================================== */


@media only screen and (max-width: 767px) {
	body,
	h1, h2, h3, h4, h5, h6 { font-size: 11px; }
	h1 { line-height: 175%; }

	.wrapper {
		width: 86%;
		margin: 25px auto;
		}
	main {
		float: right;
		width: auto;
		padding: 0px 0 0 0;
		}
	
	header#site-head {
	    padding: 0 0 40px 0;
	    text-align: center;
	    width: auto;
	    float: none;
	    }

    .blog-title {
    	font-size: 30px;
    }
    
	.post-header span.post-meta {
		display: none;
	}

    .post-footer {
        padding: 2rem 0;
        text-align: center;
    }

    .post-footer .author {
        margin: 0 0 2rem 0;
        padding: 0 0 1.6rem 0;
        border: none;
        border-bottom: #EBF2F6 1px solid;
    }

    .post-footer .share {
        position: static;
        width: auto;
    }

    .post-footer .share a {
        margin: 0 0.8rem 0 0.8rem;
    }

    .older-posts,
    .newer-posts {
        position: static;
        margin: 10px 0;
    }

    .page-number {
        display: block;
    }

    .site-footer {
        margin-top: 4rem;
        text-align: center;
    }

}

