/* 

	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 {
	-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: // Window Background;
	display:block;
	position:relative;
}
.content-pad {
	-wp-background:  // Page Background;
}
a {
	-wp-font: // Default Link;
	&:focus, &:active, &:hover {
		-wp-font: // Default Link Hover;
	}
}

/* Header */

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

/* Main Menu */
#menu {
	-wp-background: // Navigation.Background;
	ul {
		-wp-font: // Navigation.Link Font;
	}	
	a {
		-wp-background: transparent // Navigation.Link;
	}
	& li:hover > a,
	& ul ul :hover > a,
	& a:focus {
		-wp-background: // Navigation.Link Hover;
	}
}

/* Search */
#edit-search-theme-form-keys {
	-wp-background: // Search Form;
	&:focus {
		-wp-background: // Search Form Active;
	}
}

/* Content */

#main {
	.title {
		h2 {
			-wp-font: //Content.Blog Entry Title;
		}
		> small {
			-wp-font: //Content.Blog Entry Meta;
		}
	}
	.entry, .commentlist {
		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 */

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


/* Navigation */

/* Widgets */


/* Comments */


/* Footer */

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

#footer .rt {
	-wp-background: #f9f9f9 //Footer.Designer Credit;
}

