/*
Theme Name: Raindrops Child
Template: raindrops
Version: 0.1.0
*/
@import url("../raindrops/style.css");

.entry-title a:link
{
	color:#ff0000;
}
.entry-title a:hover
{
	color:#CCCC00;
}
.entry-title a:visited
{
	color:#004AB8;
}
/*
This gets the links to cycle colours correctly in the main post. NOTE: Only works if you have turned off link colours in the customize field for raindrops. Extra note: I overrode the link colour issue by placing the !important tag in the CSS. This will override all other higher-level requests. Keep in mind when you need to change other things.
*/
.entry-content a:link
{
	color:#ff0000 !important;
}
.entry-content a:hover
{
	color:#CCCC00 !important;
}
.entry-content a:visited
{
	color:#004AB8 !important;
}

/*
This gets top-level comments to show the appropriate colouring for links
*/
.comment-body a:link {

color:#ff0000;
}
.comment-body a:hover
{
	color:#CCCC00;
}
.comment-body a:visited
{
	color:#004AB8;
}

/* 
This does the same as above, but for the author's comments
*/
.bypostauthor .comment-body a:link {

color:#ff0000;
}
.bypostauthor .comment-body a:hover
{
	color:#CCCC00;
}
.bypostauthor .comment-body a:visited
{
	color:#004AB8;
}

/* This changes the background colour of comments to odd and even */

.commentlist .even .comment-body {background: #101010;}

.commentlist .odd .comment-body {background: #1A0000;}

.commentlist  li ul .children .even .comment-body {background: #101010;}
.commentlist li ul .children .odd .comment-body {background: #1A0000;}

/*
The following entry was used to hide the post tags as they are there for search purposes and can get very busy very quick. The site I got this from warned that this might hide too much, so be wary.
*/

.entry-meta , .tag-links { display: none; }

/* This is for the caption text. */

.wp-caption-text {

color:#008080;
text-align:center;
}

/* Blockquote manipulation */

blockquote p {

color:#009933;
}

.fontstyle2 (
color:#009933;
)

/* blockquote em, i {

	color:#009933;

}
*/

/* Blockquotes in comments */

.comment-body blockquote p {

    clear:both;
    margin:1em 2.5em;
    padding:1em;
    color:#009933;
}

/* 

Making a hanging indent for references. 

Note: This has been causing a formatting problem when using the header option. I recommend leaving this strictly for the div tag, as it doesn't appear to fuck things up. However, make sure your div tag is incorporating a carriage return or else you will be inserting a lot of line breaks as well.

*/

.references {
  margin-left: 2em ;
  padding-left: 22px ;
  text-indent: -22px ;
  font-size: 85% ;
} 

/* Overriding the default italics font */
em, i{
    font-style: italic;
	padding-left: 0em;
    padding-right: 0em;
	font-weight:normal;
    
}

/* This fixes the italics colour being different from the main body. 
 * Scratch that, it actually makes the italics in blockquotes pop out unnaturally. I will leave this in here for posterity, but commented out.

/*
.entry-content em {
	color:#C2C2C2;
}
*/ 
/* Getting threaded comments to properly indent. */

#comments .children{
    margin-left:3em;
}


/* Remove automatic hyphenation */
body, p,  h1, h2, h3, h4, h5, h6 {
 -moz-hyphens: none !important;
-ms-hyphens: none !important;
-webkit-hyphens: none !important;
hyphens: none !important;}

/* An alternative to kill the auto-hyphen */

.site-content article { word-wrap: normal; -webkit-hyphens: none; -moz-hyphens: none; hyphens: none; }
.widget-area .widget { word-wrap: normal; -webkit-hyphens: none; -moz-hyphens: none; hyphens: none; }