/*
Theme Name:		Excuse Me
Theme URI: 		http://excuseme.iwantacustomblog.com/
Version: 		0.1
Description: 	The tutorial theme for www.iwantacustomblog.com - heavily commented and flexbile, to introduce new users to some basic wordpress stuff.
Author: 		M. Drummond
Author URI:		http://iwacb.com
Tags:			two-columns, fixed-width 

*/
/* imports go first, so you can overwite them during the cascade. Feel free to look at them, but they're not as well-explained as most other parts of this theme*/
@import url(css/reset.css); /* gets everything ready to be placed */
@import url(css/structure.css); /* puts things in their place */
@import url(css/typography.css); /* styles the text */
@import url(css/flag.css); /* adds some branding */
/* this code is used for aligning images within posts:  It has to be in the styles.css area. */

.aligncenter {
	display: block;
	margin-left: auto;
	margin-right: auto;
}

.alignleft {
	float: left;
}

.alignright {
	float: right;
}



/* first things' first : Comments.  Commenting out code lets you hide code from being processed. It's easy! End CSS comments look like this: */ 

/* < and this is a Begin comment! /*

/*  For this tutorial you'll need to be bold and remove what I've commented out. Let's start: /*

body {background: #fff; } */ /*change this to change the entire background for the site. Use any hex code to change the colour.  Nothing on the site has a background colour, so it'll be universal. */

 /* un-comment this next part to invert the site's colours - it'll have a black background and white text /*

body {background : #000; color: #fff; }
a {color: #000;

*/ 

/* enable this code to adjust the site's width (up to 960px - quite wide)*/ /*
#wrapper  {
margin:30px auto;
width: 960px;
}
#content {width: 820px; }
*/


