werc-1.5.0-tweaks

Tweaks for the werc website builder created by the mad architect Uriel
Log | Files | Refs | README

css-style.md (667B)


      1 Custom CSS Stylesheets
      2 =====================
      3 
      4 If you create a file under your site's dir at _werc/pub/style.css it will be included automatically after the standard werc stylesheet.
      5 
      6 You can copy pub/style/style.css and customize it, or you can take a simpler file and just change the main color theme.
      7 
      8 Here is an example of how to set the main werc colors:
      9 
     10 
     11 	header nav { background-color: rgb(100,135,220); color: white; }
     12 	header h1 { background-color: #ff6d06; color: black; }
     13 	body > nav > div { border-bottom: 1px solid #ddd; } 
     14 	body > nav > div a { color: rgb(0, 102, 204); } 
     15 	body > nav > div a:hover { color: white; background-color: rgb(100,135,220); }