/*
Theme Name: Rodrigweez
Theme URI: http://underscores.me/
Author: Christiana Rodriguez
Author URI: http://www.rodrigweez.com
Description: Minimal. Colorful. Happy. Fun
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: rodrigweez
Tags:

This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned with others.

Rodrigweez is based on Underscores http://underscores.me/, (C) 2012-2015 Automattic, Inc.
Underscores is distributed under the terms of the GNU GPL v2 or later.

Normalizing styles have been helped along thanks to the fine work of
Nicolas Gallagher and Jonathan Neal http://necolas.github.com/normalize.css/
*/

/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------
# Normalize
# Typography
# Elements
# Forms
# Navigation
	## Links
	## Menus
# Accessibility
# Alignments
# Clearings
# Widgets
# Content
	## Posts and pages
	## Asides
	## Comments
# Infinite scroll
# Media
	## Captions
	## Galleries
--------------------------------------------------------------*/

/*--------------------------------------------------------------
# Normalize
--------------------------------------------------------------*/
html {
	font-kerning:normal;
	-webkit-text-size-adjust: 100%;
	-ms-text-size-adjust:     100%;
}

body {margin: 0;}

article,
aside,
details,
figcaption,
figure,
footer,
header,
main,
menu,
nav,
section,
summary {display: block;}

h1,
h2,
h3,
h4,
h5,
h6 {-webkit-margin-before:0;
	-webkit-margin-after:0;
	margin-bottom: 1rem;}

audio,
canvas,
progress,
video {
	display: inline-block;
	vertical-align: baseline;}

audio:not([controls]) {
	display: none;
	height: 0;}

[hidden],
template {display: none;}

a {background-color: transparent;
	text-decoration: none;}

a:active,
a:hover {outline: 0;}

strong {font-weight: bold;}

img {border: 0;}

svg:not(:root) {overflow: hidden;}

hr {
	box-sizing: content-box;
	height: 0;}

button,
input,
select,
textarea {
	color: inherit;
	font: inherit;
	margin: 0;}

button {overflow: visible;}

button,
select {text-transform: none;}

button,
html input[type="button"],
input[type="reset"],
input[type="submit"] {
	-webkit-appearance: button;
	cursor: pointer;}

button[disabled],
html input[disabled] {
	cursor: default;}

button::-moz-focus-inner,
input::-moz-focus-inner {
	border: 0;
	padding: 0;}

input {line-height: normal;}

input[type="checkbox"],
input[type="radio"] {
	box-sizing: border-box;
	padding: 0;}

input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
	-webkit-appearance: none;}

textarea {overflow: auto;}

table {
	border-collapse: collapse;
	border-spacing: 0;}

/*--------------------------------------------------------------
# Typography
--------------------------------------------------------------*/
body,
button,
input,
select,
textarea {
	font-family: 'ClarendonBT-Bold';
	font-kerning:normal;
	font-size: 18px;
	xfont-size: 1rem;
	line-height: 1.5;}
	body {
		color:black;
		xfont-family:'Georgia',serif;
		font-family:'Bariol', sans-serif;}

h1,
h2,
h3,
h4,
h5,
h6 {
	font-family: 'ClarendonBT-Roman';
	font-weight:normal;
	clear: both;}
	h1 {
		font-size: 2em;
		line-height: 2rem;
		margin:0 0 1rem;}

p {margin:0 0 1rem;}

em {font-style: italic;}

pre, code {
	background: #eee;
	font-family: "Courier 10 Pitch", Courier, monospace;
	font-size: 15px;
	font-size: 0.9375rem;
	line-height: 1.6;
	margin-bottom: 1.6em;
	max-width: 100%;
	overflow: auto;
	padding: 1.6em;}

q {quotes: "“" "”" "‘" "’";}
q:before {content: open-quote;}
q:after {content: close-quote;}

/*--------------------------------------------------------------
# Elements
--------------------------------------------------------------*/
html {box-sizing: border-box;}

*,
*:before,
*:after { /* Inherit box-sizing to make it easier to change the property for components that leverage other behavior; see http://css-tricks.com/inheriting-box-sizing-probably-slightly-better-best-practice/ */
	box-sizing: inherit;}

hr {
	background-color: #ccc;
	border: 0;
	height: 1px;
	margin-bottom: 1.5em;}

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

ul {list-style: disc;}

ol {list-style: decimal;}

img {
	height: auto; /* Make sure images are scaled correctly. */
	max-width: 100%; /* Adhere to container width. */}

table {
	margin: 0 0 1.5em;
	width: 100%;}

/*--------------------------------------------------------------
# Forms
--------------------------------------------------------------*/
.button,
button,
input[type="button"],
input[type="reset"],
input[type="submit"] {
	background-color:black;
	color:white;
	display:inline-block;
	font-family: 'ClarendonBT-Roman';
	font-size: 0.8rem;
	padding: .6em 1em;}
	.button:hover,
	button:hover,
	input[type="button"]:hover,
	input[type="reset"]:hover,
	input[type="submit"]:hover,
	.button:focus,
	button:focus,
	input[type="button"]:focus,
	input[type="reset"]:focus,
	input[type="submit"]:focus,
	.button:active,
	button:active,
	input[type="button"]:active,
	input[type="reset"]:active,
	input[type="submit"]:active {
		background-color:rgb(229,0,28);
		text-decoration: none;}

input[type="text"],
input[type="email"],
input[type="url"],
input[type="password"],
input[type="search"],
textarea {
	color: #666;
	border: 1px solid #ccc;
	border-radius: 3px;}

select {border: 1px solid #ccc;}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="url"]:focus,
input[type="password"]:focus,
input[type="search"]:focus,
textarea:focus {color:black;}

input[type="text"],
input[type="email"],
input[type="url"],
input[type="password"],
input[type="search"] {padding: 3px;}

textarea {
	padding-left: 3px;
	width: 100%;}

/*--------------------------------------------------------------
# Navigation
--------------------------------------------------------------*/
/*--------------------------------------------------------------
## Links
--------------------------------------------------------------*/
a {color:rgb(229,0,28);}
	a:hover,
	a:focus,
	a:active {
		outline:0;
		text-decoration: underline;}

/*--------------------------------------------------------------
## Menus
--------------------------------------------------------------*/
.main-navigation {
	display:block;
	margin:1rem auto 0;}

.main-navigation ul {
	display:flex;
	flex-flow:row wrap;
	justify-content: space-between;
	list-style: none;
	margin:0 auto;
	padding:0;
	width:600px;}

.main-navigation li {
	display:inline-block;
	margin-left: 2rem;}
	.main-navigation li:first-of-type {
		margin-left:0}
.main-navigation a {
	border-bottom: .4rem solid transparent;
	display: block;
	font-family: 'ClarendonBT-Bold';
	padding:.8rem 0;
	text-decoration: none;
	text-transform: uppercase;}

.site-main .posts-navigation,
.site-main .post-navigation {
	align-items:center;
	border-bottom:1px dotted #ccc;
	color:rgb(229, 0, 28);
	display:flex;
	font-family: 'ClarendonBT-Bold';
	height:4rem;
	justify-content:space-between;
	margin:-4.4rem auto 4rem;
	padding:0;}

.posts-navigation .nav-next,
.post-navigation .nav-next,
.posts-navigation .nav-previous,
.post-navigation .nav-previous,
.post-navigation .nav-dingbat {
	flex:1;
	margin:0;
	padding:0;}
	.posts-navigation .nav-next,
	.post-navigation .nav-next {
		text-align: right;}

.post-navigation .nav-dingbat {text-align: center;}
	.post-navigation .nav-dingbat img {
		height:1.5rem;
		min-width:0 !important;}

/*--------------------------------------------------------------
# Accessibility
--------------------------------------------------------------*/
/* Text meant only for screen readers. */
.screen-reader-text {
	clip: rect(1px, 1px, 1px, 1px);
	position: absolute !important;
	height: 1px;
	width: 1px;
	overflow: hidden;
}

.screen-reader-text:focus {
	background-color: #f1f1f1;
	border-radius: 3px;
	box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
	clip: auto !important;
	color: #21759b;
	display: block;
	font-size: 14px;
	font-size: 0.875rem;
	font-weight: bold;
	height: auto;
	left: 5px;
	line-height: normal;
	padding: 15px 23px 14px;
	text-decoration: none;
	top: 5px;
	width: auto;
	z-index: 100000; /* Above WP toolbar. */
}

/* Do not show the outline on the skip link target. */
#content[tabindex="-1"]:focus {
	outline: 0;
}

/*--------------------------------------------------------------
# Clearings
--------------------------------------------------------------*/
.clear:before,
.clear:after,
.entry-content:before,
.entry-content:after,
.comment-content:before,
.comment-content:after,
.site-header:before,
.site-header:after,
.site-content:before,
.site-content:after,
.site-footer:before,
.site-footer:after {
	content: "";
	display: table;
	table-layout: fixed;
}

.clear:after,
.entry-content:after,
.comment-content:after,
.site-header:after,
.site-content:after,
.site-footer:after {
	clear: both;
}

/*--------------------------------------------------------------
# Content
--------------------------------------------------------------*/
.site-main {
	margin:0 auto;
	max-width:600px;}
	.site-main article.rz_comics img {
		border:1px solid rgba(0,0,0,0.1);
	}
	
.site-branding {
	margin:3rem auto 1rem;
	text-align: center;}
	.site-branding img {width:400px;}
	.site-branding span {display: block;}

.site-content {margin:0 auto;}

/* Color Coding */

li.journal a {color:rgb(0,134,139); /* turquoise */}
	li.journal a:hover,
	body.blog li.journal a,
	.single-format-quote li.journal a,
	.single-format-standard li.journal a {
		border-bottom:.4rem solid rgb(0,134,139);}
li.photos a {color:rgb(171,0,104);/* magenta */}
	li.photos a:hover,
	li.photos.current-menu-item a {
		border-bottom:.4rem solid rgb(171,0,104);}
li.comics a {color:rgb(255,109,2); /* orange */}
	li.comics a:hover,
	.post-type-archive-rz_comics li.comics a,
	.single-comics li.comics a {
		border-bottom:.4rem solid rgb(255,109,2);}
li.about a {color:rgb(254,193,5); /* gold */}
	li.about a:hover,
	body.page-id-4 li.about a {
		border-bottom:.4rem solid rgb(254,193,5);}
li.shop a {color:rgb(189,217,50); /* yellowgreen */}
	li.shop a:hover {
		border-bottom:.4rem solid rgb(189,217,50);}

.site-footer {
	background-color:rgb(60,186,200);
	color:white;
	font-family: 'ClarendonBT-Roman';
	font-size: 14px;
	padding:1rem;
	text-align: center;}

/*--------------------------------------------------------------
## Posts and pages
--------------------------------------------------------------*/
article {  
	margin:4rem auto 0;}

.entry-content {
	border-bottom:1px dotted #cdcdcd;
	margin-bottom: 4.4rem;
	padding-bottom: 4rem;}

.entry-content img {
	border-radius: 6px;
	margin-bottom: 1.5rem;
	min-width:600px;}
	img.emoji {min-width:0px;}

p.entry-meta {
	color:#aaa;
	font-size: .8rem;}

.format-quote .entry-content {
	font-family: 'ClarendonBT-Roman';
	font-size: 1.2rem;
	line-height: 1.8rem;
	margin-top: 4rem;
	position:relative;
	z-index:1;}
	.format-quote .entry-content:before {
		color:turquoise;
		content:"\201c";
		font-family:'ClarendonBT-Bold';
		font-style: normal;
		font-size:12rem;
		left:-.5rem;
		line-height: 0;
		position:absolute;
		top:3rem;
		z-index:-1;}
	.format-quote .entry-content p:first-of-type {
		text-indent: 6rem;}
	.single .format-quote {margin-top:4rem;}

/* Comics Archive */

.archive-list ol {
	list-style-position: inside;
	margin:0 0 4rem;
	padding:0;}

p a.button {
	margin-bottom: 1rem;}

/*--------------------------------------------------------------
## Comments
--------------------------------------------------------------*/
.comments-area {
	margin:4rem auto;}

div.comment {margin-bottom:2.4rem;}
	div.comment img {display: none;}

.comment-meta {margin-bottom:0;}
	.comment-meta span {font-family: 'ClarendonBT-Bold';}

.comment-content a {word-wrap: break-word;}

.comment-form-comment label {display: none;}

.comment-respond {font-size: 0;}
	.comment-respond p {font-size: 1rem;}

.logged-in-as, .comment-reply-title {display:none;}


/*--------------------------------------------------------------
# Media
--------------------------------------------------------------*/

/* Make sure embeds and iframes fit their containers. */
embed,
iframe,
object {
	max-width: 100%;
}

/* Work */

.site-main.work {
	margin:0 auto;
	min-width:800px;}

.grid {
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-flex-direction: row;
    flex-direction: row;
    justify-content:space-between;}
.grid-item {
	margin-top:5rem;
	text-align:center;
    width: 45%;}
    .grid-item img {
    	margin-bottom: 1rem;
	 	max-width: 100%;
	 	height: auto;}
	 .grid-item p {
		 text-transform: uppercase;}
		 .grid-item p span {
			 text-transform: lowercase;}

/**
 * Adaptive Stuff
 */
 
@media only screen and (min-width: 768px) { /* tablets and desktop */}

@media only screen and (max-width: 767px) { /* phones */
.site-description {
	white-space: pre-line;}

.site-main, .site-header {
	margin:0 auto;
	max-width:100%;
	padding-left:2rem;
	padding-right:2rem;}

.main-navigation ul {
	justify-content: space-between;
	margin:0 auto;
	padding:0;
	width:100%;}
	.main-navigation li {
	display:inline-block;
	margin-left:0}
	.main-navigation li:first-of-type {
		margin-left:0}
.main-navigation a {text-transform: lowercase;}

.entry-content img {
	border-radius: 6px;
	margin-bottom: 1.5rem;
	min-width:100%;}

}

@media only screen and (max-width: 767px) and (orientation: portrait) /* portrait phones */ {}