/* 

	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

*/

/* General */
body, input, textarea {
	-wp-background: // General.Window;
}
#page {
	-wp-background: url(#) // General.Page;
	-wp-font:  // General.Default Font;
	
	a {
		-wp-font: // Default Link;
		&:focus, &:active, &:hover {
			-wp-font: // Default Link Hover;
		}
	}
	
	/* Header */
	#branding {
		-wp-background: url(#) // Header.Background;
		
		#site-title {
			a {
				-wp-background: replace-url(#) // Header.Site Title;
				-wp-font: // Header.Site Title;
			}
		}
		#site-description {
			-wp-font:  // Header.Tagline;
		}
		#searchform #s {
			-wp-background: url(#) // Header.Search;
			-wp-font:  // Header.Search;
			&:focus {
				-wp-background: url(#) // Header.Search Focus;
			}
		}
	}
	
	/* Main Menu */
	#access {
		-wp-background: url(#) // Main Menu.Wrapper;
		ul > li {
			a {
				-wp-background: url(#) // Main Menu.Link: Top Level;
				-wp-font:  // Main Menu.Link: Top Level;
			}
			a:hover, li:hover > a, a:focus {
				-wp-background: url(#) // Main Menu.Link: Top Level Hover;
				-wp-font:  // Main Menu.Link: Top Level Hover;
			}
		}
		.sub-menu {
			-wp-background: url(#) // Main Menu.Submenu;
			li {
				a {
					-wp-background: url(#) // Main Menu.Submenu Link;
					-wp-font:  // Main Menu.Submenu Link;
				}
				a:hover, li:hover > a, a:focus {
					-wp-background: url(#) // Main Menu.Submenu Link Hover;
					-wp-font:  // Main Menu.Submenu Link Hover;
				}
			}
		}
	}
	
	/* Body */
	#main {
		-wp-background: url(#) // Content.Wrapper;
	}
	
	/* Content */
	#content {
		-wp-background: url(#) // Content.Content;
		
		.page-title, .entry-title, .singular .entry-title {
			-wp-font: // Content.Entry Title;
			a { 
				-wp-font:  // Content.Entry Title Link;
			}
		}
		.entry-meta {
			-wp-font: // Content.Entry Meta;
			a {
				-wp-font: // Content.Entry Meta Link;
			}
		}

		.entry-content, .comment-content {
			h1 { -wp-font: // Content.Heading 1;}
			h2 { -wp-font: // Content.Heading 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; }
		}

	}
	
	/* Sidebar */
	#secondary {
		-wp-background: url(#) // Sidebar.Wrapper;
	
		.widget {
			-wp-background: url(#) // Sidebar.Widget;
			.widget-title {
				-wp-font:  // Sidebar.Widget Title;
			}
			ul {
				-wp-font:  // Sidebar.Widget Content;
				a {
					-wp-font:  // Sidebar.Widget Link;
					&:hover{ -wp-font:  // Sidebar.Widget Link Hover; }
				}
			}
		}
	}
	
	/* Comments */
	#comments {
		
		-wp-background: url(#) // Comment Listing.Wrapper;
		
		#comments-title {
			-wp-font:  // Comment Listing.Title;
		}
		
		.commentlist {
			li {
				-wp-background: url(#) // Comment Listing.Wrapper;
				.comment-meta {
					-wp-font:  // Comment Listing.Comment Meta;
					a {
						-wp-font:  // Comment Listing.Comment Meta Link;
						&:hover { -wp-font:  // Comment Listing.Comment Meta Link Hover;}
					}
				}
				.comment-content {
					-wp-font:  // Comment Listing.Comment Content;
				}
				.comment-reply-link {
					-wp-font:  // Comment Listing.Comment Reply Link;
					-wp-background: url(#) // Comment Listing.Comment Reply Link;
				}
			}
			.even {
				-wp-background: url(#) // Comment Listing.Even Comment Wrapper;
			}
			.odd {
				-wp-background: url(#) // Comment Listing.Odd Comment Wrapper;
			}
		}
		
		/* Response Form */
		#respond {
			-wp-background: url(#) // Comment Response Form.Response Wrapper;
			
			#reply-title {
				-wp-font:  // Comment Response Form.Response Title;
			}
			
			.comment-form-comment {
				label {
					-wp-background: url(#) // Comment Response Form.Response Label;
				}
				textarea#comment {
					-wp-font:  // Comment Response Form.Response Textarea;
					-wp-background: url(#) // Comment Response Form.Response Textarea;
				}
				#submit {
					-wp-font:  // Comment Response Form.Response Submit Button;
					-wp-background: url(#) // Comment Response Form.Response Submit Button;
				}
			}
		}
	}
	
	/* Footer */
	#colophon {
		
		-wp-background: url(#) // Footer.Wrapper;
		
		#supplementary {
			.widget-area {
				-wp-background: url(#) // Footer.Widget Area;
			}
			#first.widget-area {
				-wp-background: url(#) // Footer.First Widget Area;
				aside#archives-4.widget.widget_archive {
					
					h3.widget-title {
						-wp-font:  // Footer.Widget Title;
					}
					ul {
						-wp-font:  // Footer.Widget Content;
						a {
							-wp-background: url(#) // Footer.Widget Link;
						}
					}
				}
			}
		}
		#site-generator {
			-wp-background: url(#) // Footer.Theme Credit;
		}
	}
}