
/* Imports */
@import url("reset.css");
@import url("pygment.css");
@import url(https://fonts.googleapis.com/css?family=Yanone+Kaffeesatz&subset=latin);
@import url("codeblocks.css");

/***** Global *****/
/* Body */
body {
    /* COLOR2 - BACKGROUND */
    background: #FFF9B3;
    color: #000305;
    font-size: 87.5%; /* Base font size: 14px */
    font-family: 'Trebuchet MS', Trebuchet, 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
    line-height: 1.429;
    margin: 0;
    padding: 0;
    text-align: left;
    min-width: 1000px;
}



/* Headings */
h1 {font-size: 2em }
h2 {font-size: 1.571em}	/* 22px */
h3 {font-size: 1.429em}	/* 20px */
h4 {font-size: 1.286em}	/* 18px */
h5 {font-size: 1.143em}	/* 16px */
h6 {font-size: 1em}		/* 14px */

h1, h2, h3, h4, h5, h6 {
	font-weight: 400;
	line-height: 1.1;
	margin-bottom: .8em;
    font-family: 'Yanone Kaffeesatz', arial, serif;
}

h3, h4, h5, h6 { margin-top: .8em; }

/* Horizontální čáry */
hr { border: 2px solid #7FC12F; }

/* Anchors */
a {outline: 0;}
a img {border: 0px; text-decoration: none;}
a:link, a:visited {
	/* COLOR6 - LINKS */
	color: #CA7A02;
	padding: 0 1px;
	text-decoration: underline;
}
a:hover, a:active, a.active, .active>a {
	background-color: #CA7A02;
	color: white;
	text-decoration: none;
	text-shadow: 1px 1px 1px #333;
}

h1 a:hover {
    background-color: inherit
}
	
/* Paragraphs */
p {margin-bottom: 1.143em;}

strong, b {font-weight: bold;}
em, i {font-style: italic;}

::-moz-selection {background: #F6CF74; color: #fff;}
::selection {background: #F6CF74; color: #fff;}

/* Lists */
ul {
	list-style: outside disc;
	margin: 1em 0 1.5em 1.5em;
}

ol {
	list-style: outside decimal;
	margin: 1em 0 1.5em 1.5em;
}

.post-info {
    float:right;
    margin:10px;
    padding:5px;
}

.post-info p{
    margin-bottom: 1px;
}

.readmore { float: right }

dl {margin: 0 0 1.5em 0;}
dt {font-weight: bold;}
dd {margin-left: 1.5em;}

pre{padding: 10px; margin: 10px; overflow: auto;}

/* Quotes */
blockquote {
    margin: 20px;
    font-style: italic;
}
cite {}

q {}

/* Tables */
table {margin: .5em auto 1.5em auto; width: 98%;}
	
	/* Thead */
	thead th {padding: .5em .4em; text-align: left; border: thin solid grey;}
	thead td {border: thin solid grey;}

	/* Tbody */
	tbody td {padding: .5em .4em; border: thin solid grey;}
	tbody th {border: thin solid grey;}
	
	tbody .alt td {}
	tbody .alt th {}
	
	/* Tfoot */
	tfoot th {}
	tfoot td {}
	
/* HTML5 tags */
/* Tohle definuje speciální použité tagy */
header, section, footer,
aside, nav, article, figure {
	display: block;
}

/***** Layout *****/
img.right figure.right {float: right; margin: 0 0 2em 2em;}
img.left, figure.left {float: right; margin: 0 0 2em 2em;}




/*
 * Vysunovací menu
 */

*,
*::after,
*::before {
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}

body,
html,
.st-container,
.st-pusher,
.st-content {
	height: 100%;
}

.st-content {
	overflow-y: scroll;
}

.st-content,
.st-content-inner {
	position: relative;
}

.st-container {
	position: relative;
	overflow: hidden;
}

.st-pusher {
	position: relative;
	left: 0;
	z-index: 99;
	height: 100%;
	-webkit-transition: -webkit-transform 0.5s;
	transition: transform 0.5s;
}

.st-pusher::after {
	position: absolute;
	top: 0;
	right: 0;
	width: 0;
	height: 0;
	content: '';
	/* Následující řádek ztmavuje */	
	background: rgba(0,0,0,0.2);
	opacity: 0;
	-webkit-transition: opacity 0.5s, width 0.1s 0.5s, height 0.1s 0.5s;
	transition: opacity 0.5s, width 0.1s 0.5s, height 0.1s 0.5s;
}

.st-menu-open .st-pusher::after {
	width: 100%;
	height: 100%;
	opacity: 1;
	-webkit-transition: opacity 0.5s;
	transition: opacity 0.5s;
}

.st-menu {
	position: absolute;
	top: 0;
	left: 0;
	z-index: 100;
	visibility: hidden;
	width: 300px;
	height: 100%;
	/* COLOR6 - MENU */
	background: #FAFFB3;
	-webkit-transition: all 0.5s;
	transition: all 0.5s;
}

.st-menu::after {
	position: absolute;
	top: 0;
	right: 0;
	width: 100%;
	height: 100%;
	background: rgba(0,0,0,0.2);
	content: '';
	opacity: 1;
	-webkit-transition: opacity 0.5s;
	transition: opacity 0.5s;
}

.st-menu-open .st-menu::after {
	width: 0;
	height: 0;
	opacity: 0;
	-webkit-transition: opacity 0.5s, width 0.1s 0.5s, height 0.1s 0.5s;
	transition: opacity 0.5s, width 0.1s 0.5s, height 0.1s 0.5s;
}

/* content style */

.st-menu ul {
	margin: 0;
	padding: 0;
	list-style: none;
}

.st-menu h2 {
	margin: 0;
	padding: 1em;
	color: #6CA329;
	text-shadow: 0 0 1px rgba(0,0,0,0.1);
	font-weight: 300;
	font-size: 2em;
}

.st-menu ul li a {
	display: block;
	padding: 1em 1em 1em 1.2em;
	outline: none;
	box-shadow: inset 0 -1px rgba(0,0,0,0.2);
	color: #3B6B00;
	text-transform: uppercase;
	text-shadow: 0 0 1px rgba(255,255,255,0.1);
	letter-spacing: 1px;
	font-weight: 400;
	-webkit-transition: background 0.3s, box-shadow 0.3s;
	transition: background 0.3s, box-shadow 0.3s;
}

.st-menu .active>a {
	background-color: #FFFF57;
}

.st-menu ul li:first-child a {
	box-shadow: inset 0 -1px rgba(0,0,0,0.2), inset 0 1px rgba(0,0,0,0.2);
}

.st-menu ul li a:hover {
	background: #D8EE4F;
	box-shadow: inset 0 -1px rgba(0,0,0,0);
	color: #3B6B00;
}

/* Individual effects */

/* Effect 3: Push*/
.st-effect-3.st-menu-open .st-pusher {
	-webkit-transform: translate3d(300px, 0, 0);
	transform: translate3d(300px, 0, 0);
}

.st-effect-3.st-menu {
	-webkit-transform: translate3d(-100%, 0, 0);
	transform: translate3d(-100%, 0, 0);
}

.st-effect-3.st-menu-open .st-effect-3.st-menu {
	visibility: visible;
	-webkit-transition: -webkit-transform 0.5s;
	transition: transform 0.5s;
}

.st-effect-3.st-menu::after {
	display: none;
}


/* Konec vysunovacího menu */

/* Tlačítko */

button {
  position: fixed;
  top: 0;
  left: 0px;
  width: 50px;
  height: 50px;
  transition: all 300ms cubic-bezier(.61, .01, .42, 1);
  cursor: pointer;
  background: transparent;
  /* COLOR3 - BUTTON */
  background-color: #6CA329;
  border: 0px;
}

.button-line {
  height: 0px;
  left: 13px;
  border: 1.5px solid #fff;
  width: 22px;
  display: block;
  position: absolute;
  transition: all 300ms cubic-bezier(.61, .01, .42, 1);
  background:#fff;
  color:#FFFFFF;
}

button:hover {
  transition-delay: 100ms;
  transform: scale(1.1);
}

button:hover .button-line:nth-child(3):before {
  width: 2px;
  height: 2px;
  border-radius: 50%;
  background: #F26451;
}

button:hover .button-line {
  border: 2px solid #fff;
  height: 9px;
  border-radius: 50%;
  margin-left: -1px;
  margin-top: 21px;
  animation: atom 300ms linear 1;
  width: 25px;
  top: 0px;
  background:transparent;
}

button:focus {
  outline: 0px;
}

.button-line:nth-child(1) {
  top: 19px;

}

.button-line:nth-child(2) {
  top: 23px;
}

.button-line:nth-child(3) {
  top: 27px;
}

.button-line:nth-child(3):before {
  opacity: 0;
  animation: ball 1.5s linear infinite;
  content: '';
  border: 2px solid #fff;
  display: block;
  position: relative;
  top: 0.25px;
}

button:hover .button-line:nth-child(1) {
  transform: rotate(-33deg);
}

button:hover .button-line:nth-child(2) {
  transform: rotate(90deg);
}

button:hover .button-line:nth-child(3) {
  transform: rotate(33deg);
}

button:hover .button-line:nth-child(3):before {
  opacity: 1;
  transition: opacity 600ms cubic-bezier(.61, .01, .42, 1);
  ;
}

@keyframes atom {
  0% {
    transform: rotate(180deg);
  }
}

@keyframes ball {
  0% {
    left: -20%;
    top: 10%;
  }
  10% {
    left: 10%;
    top: -35%;
  }
  25% {
    left: 45%;
    top: -50%;
  }
  40% {
    left: 80%;
    top: -20%;
  }
  50% {
    left: 98%;
    top: 18%;
  }
  60% {
    left: 80%;
    top: 50%;
  }
  75% {
    left: 45%;
    top: 80%;
  }
  90% {
    left: 0%;
    top: 60%;
  }
  100% {
    left: -20%;
    top: 10%;
  }
}


/*
 * Turtle image
 */

.main-image {
  position: fixed;
  top: 75%;
  left: 80%;
  height: 200px;
  width: 200px;  
}

/*
 * Archive of articles
 */

.entry-container {
  width: 100%;
  margin: 0;
  display: flex;
  justify-content: center;
  align-items: center; 
}

.date {
  float: left;
  width: 14%;
  top: 50%;
  font-size: 17px;
  padding: 0;
  margin: auto;
  min-height: 50px;
  /* Zarovnání data doprostřed */
  text-align: center;
  vertical-align: middle;
  display: table-cell;
}

.post {
  width: 82%;
  padding: 2%;
  margin: 0;
  min-height: 50px;
  overflow: hidden;
  word-wrap: break-word;
  overflow:auto;
}

.bubble {
  background-color: #FAFFB3;
  color: #3B6B00; 
  border-radius: 12px;
  padding: 3px;
  display: inline-block;
  border: 1px solid #3B6B00;
}

.post h1 {
  
}

/*
	Header
*****************/
/* 
 * Toto je nadpis stránky
 */
#banner {
    clear: both;
	margin: 0 auto 0 auto;
	padding: 2.5em 0 0 0;
	text-align: center;
}

	/* Banner */
	#banner h1 {
        font-size: 3.571em; 
        line-height: 0;
	    margin: 0 auto 0 auto;
    }
	#banner h1 a:link, #banner h1 a:visited {
		/* COLOR4 - MAIN TITLE */
		color: #6CA329;
		display: block;
		font-weight: bold;
		margin: 0 auto .6em auto;
		text-decoration: none;
		width: 427px;
	}
	#banner h1 a:hover, #banner h1 a:active {
		background: none;
		/* COLOR3 - LINKS */
		color: #FB9902;
		text-shadow: none;
	}
	
	#banner h1 strong {font-size: 0.36em; font-weight: normal;}
	
	/* Main Nav */
	#banner nav {
		/* COLOR5 - NAVIGATION LINE */
		background: #3B6B00;
		font-size: 1.143em;
		height: 40px;
		line-height: 40px;
		margin: 0 auto 2em auto;
		padding: 0;
		width: 60%;
		
		border-radius: 5px;
		-moz-border-radius: 5px;
		-webkit-border-radius: 5px;
	}
	
	#banner nav ul {list-style: none; margin: 0 auto;}
	#banner nav li {float: left; display: inline; margin: 0; height: 40px;}
	
	#banner nav a:link, #banner nav a:visited {
		color: #fff;
		display: inline-block;
		height: 40px;
		padding: 0px 1.5em;
		text-decoration: none;
	}
	#banner nav a:hover, #banner nav a:active,
	#banner nav .active a:link, #banner nav .active a:visited {
		/* COLOR3 - ACTIVE LINK */
		background: #FB9902;
		color: #fff;
		text-shadow: none !important;
	}
	
	#banner nav li:first-child a {
		border-top-left-radius: 5px;
		-moz-border-radius-topleft: 5px;
		-webkit-border-top-left-radius: 5px;
		
		border-bottom-left-radius: 5px;
		-moz-border-radius-bottomleft: 5px;
		-webkit-border-bottom-left-radius: 5px;
	}

/*
      Hlavní okno
***********************/

/* Z nějakého důvodu mi nejde změnit barva */

#content {
	/* COLOR1 - CONTENT */
	background: #FEFEE7;
	border-radius: 10px;
	-moz-border-radius: 10px;
	-webkit-border-radius: 10px;
	margin: 0 auto;
	display: block;
	min-width: 600px;
	padding: 20px 30px;
	width: 53%;
	overflow: auto;
}

#header {
	text-align: center;
}

/*
      Kubovo
******************/

/* Datum vytvoření článku */
.published {
	color: #AAEE00;
	font-size: 2em;
}

/*
	Extras
*****************/
/*
 * Sidebar je ten sloupec, který je napravo
 */
#sidebar {
    float: right; 
    margin: 1em 7% 2em 10px;
	background: #fff;
	overflow: hidden;
	padding: 20px 20px;
	width: 15%;
	
	border-radius: 10px;
	-moz-border-radius: 10px;
	-webkit-border-radius: 10px;
}

#sidebar ul {list-style: none; margin: 0;}
#sidebar li {border-bottom: 1px solid #fff;}

#sidebar h2 {
	color: #C74350;
	font-size: 1.429em;
	margin-top: .75em;
	margin-bottom: .25em;
	padding: 0 3px;
}

#sidebar a:hover {
	color: #3B6B00;
}

#sidebar a:link, #sidebar a {
	color: #444;
	display: block;
	border-bottom: 1px solid #F4E3E3;
	text-decoration: none;
	padding: .3em .25em;
}
#sidebar li.active a {color: white;}

#sidebar li:last-child,
#sidebar li:last-child a {border: 0}

#sidebar .blogroll li:nth-last-child(2),
#sidebar .blogroll li:nth-last-child(3),
#sidebar .blogroll li:nth-last-child(2) a,
#sidebar .blogroll li:nth-last-child(3) a {border: 0;}

#sidebar a:active {color: #fff;}

	/* Blogroll */
	#sidebar .blogroll {
		width: 100%;
	}
	
	#sidebar .blogroll li {float: left; margin: 0 20px 0 0; width: 185px;}
	
/*
	About
*****************/
/* 
 * Tohle je ten blok dole
 */
#about {
	background: #fff;
	font-style: normal;
	margin-bottom: 2em;
	overflow: hidden;
	padding: 20px;
	text-align: left;
	width: 760px;
	
	border-radius: 10px;
	-moz-border-radius: 10px;
	-webkit-border-radius: 10px;
}

#about .primary {float: left; width: 165px;}
#about .primary strong {color: #C64350; display: block; font-size: 1.286em;}
#about .photo {float: left; margin: 5px 20px;}

#about .url:link, #about .url:visited {text-decoration: none;}

#about .bio {float: right; width: 500px;}

/*
	Footer
*****************/
#footer {
    padding-bottom: 2em; 
    text-align: center; 
    clear: both; 
    width: 80%;
    margin: 20px auto;
}

/***** Sections *****/
/* Blog */
.hentry {
	border-bottom: 1px solid #eee;
	padding: 1.5em 0;
}
li:last-child .hentry, #content > .hentry {border: 0; margin: 0;}
#content > .hentry {padding: 1em 0;}
.hentry img{display : none ;}

/*
 * Titulek článku
 */
.entry-title {font-size: 3em; margin-bottom: 10px; margin-top: 0;}
.entry-title a:link, .entry-title a:visited {text-decoration: none; color: #333;}
.entry-title a:visited {background-color: #fff;}

/*
 * To, co je pod článkem
 * Myslím třeba odkaz na další článek
 */
.entry-content {font-size: 2em;}

.hentry .post-info * {font-style: normal;}

	/* Content */
	.hentry footer {margin-bottom: 2em;}
	.hentry footer address {display: inline;}
	#posts-list footer address {display: block;}

	/* Blog Index */
	#posts-list {list-style: none; margin: 0;}
	#posts-list .hentry {padding-left: 10px; position: relative;}
	
	#posts-list footer {
		left: 10px;
		position: relative;
        float: left;
		top: 0.5em;
		width: 190px;
	}
	
	/* About the Author */
	#about-author {
		background: #f9f9f9;
		clear: both;
		font-style: normal;
		margin: 2em 0;
		padding: 10px 20px 15px 20px;
		
		border-radius: 5px;
		-moz-border-radius: 5px;
		-webkit-border-radius: 5px;
	}
	
	#about-author strong {
		color: #C64350;
		clear: both;
		display: block;
		font-size: 1.429em;
	}
	
	#about-author .photo {border: 1px solid #ddd; float: left; margin: 5px 1em 0 0;}
	
	/* Comments */
	#comments-list {list-style: none; margin: 0 1em;}
	#comments-list blockquote {
		background: #f8f8f8;
		clear: both;
		font-style: normal;
		margin: 0;
		padding: 15px 20px;
		
		border-radius: 5px;
		-moz-border-radius: 5px;
		-webkit-border-radius: 5px;
	}
	#comments-list footer {color: #888; padding: .5em 1em 0 0; text-align: right;}
	
	#comments-list li:nth-child(2n) blockquote {background: #F5f5f5;}
	
	/* Add a Comment */
	#add-comment label {clear: left; float: left; text-align: left; width: 150px;}
	#add-comment input[type='text'],
	#add-comment input[type='email'],
	#add-comment input[type='url'] {float: left; width: 200px;}
	
	#add-comment textarea {float: left; height: 150px; width: 495px;}
	
	#add-comment p.req {clear: both; margin: 0 .5em 1em 0; text-align: right;}
	
	#add-comment input[type='submit'] {float: right; margin: 0 .5em;}
	#add-comment * {margin-bottom: .5em;}

