/* 

	Do not edit this file! You work will be lost when the plugin updates.
	
	Instead, copy this file to one of these locations:
		wp-content/themes/your-theme/styles-admin.css
		wp-content/themes/your-theme/css/styles-admin.css
		
	If either of those files exist, it will be used in place of this one.

	
	# GUI Properties
		Will render a GUI in the WordPress admin for input.
		
		-wp-background: Image upload, Gradient Picker, Background Color, Transparent, Hidden
		-wp-font: Font color, size, family, Google Fonts, bold, italic, capitalization, line-height
		
		
	# CSS3 / Syntax
		These properites will auto-expand to include all browser prefixes with appropriate formatting
		
		background-color: rgba(0, 0, 0, .5);
		opacity: .5;
		background: linear-gradient(#236922 0%, #508580 21%, #522452 47%, #292c61 98%);
		background: replace-url() -- Will cause element to hide text and match dimensions of uploaded image
		SCSS-style nested selectors

*/

/* Global */

body, input, textarea {
/*	color: #373737;*/
	-wp-font: 300 15px/1.625 "Helvetica Neue", Helvetica, Arial, sans-serif // Default Font;
}
html[dir="ltr"], body {
	margin-top:0 !important;padding:0;
}
body {
	-wp-background: #e2e2e2 // Window Background;
	display:block;
	position:relative;
}
#wrapper {
	-wp-background: #fff // Page Background;
}
a {
	-wp-font: // Default Link;
	&:focus, &:active, &:hover {
		-wp-font: // Default Link Hover;
	}
}

/* Header */

#site-title {
	a {
		-wp-background: replace-url(#) // Logo;
	}
}

/* Main Menu */

#access {
	-wp-background: linear-gradient(#252525, #0a0a0a) // Navigation.Background;
	ul {
		-wp-font: // Navigation.Link Font;
	}	
	a {
		color: #eee;
		-wp-background: transparent // Navigation.Link BG;
	}
	& li:hover > a,
	& ul ul :hover > a,
	& a:focus {
		-wp-background: linear-gradient(#f9f9f9, #e5e5e5) // Navigation.Link Hover BG;
	}
}

/* Search */
#searchform #s {
	-wp-background: #fff // Search Form BG;
	&:focus {
		-wp-background: #f9f9f9 // Search Form Active BG;
	}
}

/* Content */

.page-title, .entry-title, .singular .entry-title {
	-wp-font: //Content.Article Title;
}
.entry-meta {
	-wp-font: //Content.Blog Entry Meta;
}

.entry-content, .comment-body {
	h1, h2 {
		-wp-font: //Content.Heading 1 and 2;
	}
	h3 { -wp-font: //Content.Heading 3; }
	h4 { -wp-font: //Content.Heading 4; }
	h5 { -wp-font: //Content.Heading 5; }
	h6 { -wp-font: //Content.Heading 6; }
}

/* Author Info */

#entry-author-info {
	-wp-font: //Content.Author Info;
}


/* Navigation */


/* Widgets */


/* Comments */


/* Footer */

#colophon {
	-wp-background: transparent //Footer.Footer;
}

#footer .widget-area {
	-wp-background: transparent //Footer.Widget Area;
}

#footer .widget-area li {
	-wp-background: transparent //Footer.Widget;
}

#site-generator {
	-wp-background: #f9f9f9 //Footer.Site Generator;
}

