Skip to content

Instantly share code, notes, and snippets.

@ivanteoh
Created July 5, 2020 06:13
Show Gist options
  • Save ivanteoh/009146800c262ab013b6975c4731c006 to your computer and use it in GitHub Desktop.
Save ivanteoh/009146800c262ab013b6975c4731c006 to your computer and use it in GitHub Desktop.
WordPress Theme Development 13 - Colour Stylesheet
/* *** Colour *** */
/* Begin Structure */
body {
background: #000000;
}
div#wrapper {
background: #ffffff;
}
div#main {
border: 3px solid #98c92a;
}
div#container {
background: #ffffff;
}
div#content {
background: #ffffff;
}
div#sidebar {
background: #ffffff;
}
div#header, div#footer {
background: #000000;
color: #ffffff;
}
/* End Structure */
/* Begin Entry */
a {
color: #98c92a;
}
/* End Entry */
/* Begin NavMenu */
div#navmenu {
background: #98c92a;
}
div#navmenu a {
color: #ffffff;
}
div#navmenu li.current_page_item a {
color: #000000;
}
/* End NavMenu */
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment