From 9df8a79f45ca1fef6781f5a87b3fad7265523bd9 Mon Sep 17 00:00:00 2001 From: Uriel Date: Fri, 13 Feb 2009 03:50:42 +0000 Subject: [PATCH] Add file on how to customize the werc CSS stylesheets. --- sites/werc.cat-v.org/docs/css_style.md | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 sites/werc.cat-v.org/docs/css_style.md diff --git a/sites/werc.cat-v.org/docs/css_style.md b/sites/werc.cat-v.org/docs/css_style.md new file mode 100644 index 0000000..e64b633 --- /dev/null +++ b/sites/werc.cat-v.org/docs/css_style.md @@ -0,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; + }