Created
July 5, 2020 06:13
-
-
Save ivanteoh/009146800c262ab013b6975c4731c006 to your computer and use it in GitHub Desktop.
WordPress Theme Development 13 - Colour Stylesheet
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* *** 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