cerca

lean forum software (pmc local branch)
git clone http://git.permacomputing.net/repos/cerca.git # read-only access
Log | Files | Refs | README | LICENSE

theme.css (1177B)


      1 /* below are the style rules that define the visual theme of the forum 
      2  * change these to change the forum's colours */
      3 
      4 /* normal theme */
      5 /* default theme colors:
      6  * black
      7  * wheat - bg
      8  * #666 - visited link
      9  * darkred - highlights: links, certain tags
     10 */
     11 
     12 body { background: wheat; color: black; }
     13 textarea { background: black; color: wheat; }
     14 ul li { list-style-type: circle; }
     15 /* post author name is styled with `span > b` */
     16 blockquote { border-left-color: darkred; }
     17 a:not([class]), pre code { color: darkred; }
     18 h1, h2, h2 > a:not([class], :visited), span > b { color: black; }
     19 a:visited { color: #666; }
     20 header a, header a:visited { color: darkred; }
     21 
     22 /* halloween theme */
     23 /*
     24 /* halloween theme colors
     25  * #ff8000
     26  * wheat
     27  * gray
     28  * #111
     29  * #f2f2f2
     30 */
     31 /*
     32 header svg { fill: #ff8000; }
     33 #logo {
     34 	width: 48px;
     35 	height: 48px;
     36 	display: block;
     37 }
     38 p { color: #f2f2f2; }
     39 blockquote { border-color: wheat; }
     40 textarea { background: black; color: wheat; }
     41 h1 a:visited, a:not([class]) { color: wheat; }
     42 a:visited { color: gray; }
     43 body { background: #111; color: #ff8000;   }
     44 header details a:visited { color: #ff8000; }
     45 
     46 /* author colors */
     47 /*
     48 span > b { color: #ff8000; }
     49 */
     50