/*
Welcome to Custom CSS!

CSS (Cascading Style Sheets) is a kind of code that tells the browser how
to render a web page. You may delete these comments and get started with
your customizations.

By default, your stylesheet will be loaded after the theme stylesheets,
which means that your rules can take precedence and override the theme CSS
rules. Just write here what you want to change, you don't need to copy all
your theme's stylesheet content.
*/
div#main {
	color: #000;
}

ul, ol, p {
	line-height: 26px;
}

li {
	margin-bottom: 10px;
}

p.indent {
	padding-left: 2em;
	padding-right: 5em;
	color: gray;
}

.header-post-title-class {
	font-size: 26px;
	font-weight: 800;
}

.sidebar {
	float: right;
	margin-left: 40px;
	background-color: #D6D6D6;
	padding: 10px;
	border-left: 3px solid brown;
	max-width: 320px;
}

.sidebar div.caption {
	margin-bottom: 10px;
	font-weight: bold;
}

@media only screen and (max-width: 320px) {
	.header-post-title-class {
		font-size: 22px;
		font-weight: inherit;
	}
	
	.sidebar {
		float: none;
		margin-left: 0;
	}
	
	.sidebar:before {
		content: 'Sidebar';
		font-weight: bold;
		letter-spacing: 1px;
		top: 5px;
		position: relative;
	}
	
	.sidebar div:first-child,
																																							.sidebar p:first-child {
		margin-top: 10px;
	}
}

code {
	padding: 5px;
}

.linux code {
	background-color: #1c1c1c;
	color: #01FF00;
}

.email-quote {
	border: 2px solid #77011c;
	margin-left: 10%;
	margin-right: 10%;
	background-color: #fafafa;
	background: #FAFAFA url(/wp-content/uploads/EnvelopeCircleWhite.png) -5% -1% no-repeat;
	padding: 20px;
	padding-top: 115px;
	margin-bottom: 30px;
}

/************************************************/
/*         Spacious Overrides by Ofer           */
/************************************************/
body.single #content article a {
	border-bottom: 1px dashed;
}

body.single #content article a:hover {
	text-decoration: none;
}

body.single #content .entry-meta a {
	border-bottom: 0;
}

body.home               #content .entry-meta .by-author,
body.home               #content .entry-meta .date time.updated,
body.home               #content .entry-meta .category,

body.single             #content .entry-meta .by-author,
body.single             #content .entry-meta .date time.updated,
body.single             #content .entry-meta .category {
	display: none;
}

body.single #content h3 {
	padding-top: 20px;
}

/************************************************/
/*          Media overrides by Ofer            */
/************************************************/
@media only screen and (max-width: 420px) {
	
}

@media screen and (max-width: 600px) {
	
}

@media screen and (max-width: 767px) {
	
}

@media screen and (max-width: 1078px) {
	
}

@media screen and (max-width: 1308px) {
	
}