shithub: werc

Download patch

ref: 18b1db432ab98b083c7fbf6b5333e3bc3da96c32
parent: 49f64f8fca023c489fef9efd3f597a8452c852ff
author: sl <uriel@engel.se.cat-v.org>
date: Thu Feb 12 22:50:42 EST 2009

Add file on how to customize the werc CSS stylesheets.

--- /dev/null
+++ b/sites/werc.cat-v.org/docs/css_style.md
@@ -1,0 +1,18 @@
+Custom CSS Stylesheets
+=====================
+
+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.
+
+You can copy pub/style/style.css and customize it, or you can take a simpler file and just change the main color theme.
+
+Here is an example of how to set the main werc colors:
+
+
+	body { background-color: #FFFFF7; }
+	.midHeader { background-color: #FFFFE9; }
+	#side-bar { background-color: #EFFFEF; }
+	#side-bar a { color: black; }
+	#side-bar a:hover {
+	  color: white!important;
+	  background-color: #428a42;
+	}