/* CSS placed here will affect users of the Monobook skin, 
which is the default in MediaWiki installations.


==Hiding page titles for specific pages==
* Hide page title for [[Main Page]]
* Hide page title for a bunch of Portal pages

Note: It's also possible to hide titles for all Portals at once, by creating a Portal Namespace in the MediaWiki installation.  Right now this is not the case, Portal is in the default Namespace 0 (ns-0).  But in its own namespace (e.g. <tt>ns-16</tt>), you can add <tt>body.ns-16</tt> to hide all page titles for portals.

<pre> */

body.page-Category_Knoxville_Non-Profit_Organizations h1,
body.page-Portal_Media h1,
body.page-Portal_History h1,
body.page-Portal_People h1,
body.page-Portal_Business h1,
body.page-Portal_Entertainment h1,
body.page-Portal_Attractions h1,
body.page-Portal_Non-Profit h1,
body.page-Portal_Community h1,
body.page-Portal_Sports h1,
body.page-Main_Page h1 { display: none;}

/*
</pre>

==Social bookmarking link==

* Social bookmarking added towards top of left-hand navigation blocks, like the one in the upper-right-hand corner of http://www.whatsmycrossover.com/

This needs to be added to skins/MonoBook.php:
<pre>
<a href="http://www.addthis.com/bookmark.php" onclick="addthis_url   = location.href; addthis_title = document.title; return addthis_click(this);" target="_blank"><img src="http://s9.addthis.com/button1-bm.gif" width="125" height="16" border="0" alt="AddThis Social Bookmark Button" /></a> <script type="text/javascript">var addthis_pub = 'guaka';</script><script type="text/javascript" src="http://s9.addthis.com/js/widget.php?v=10"></script>  
</pre>
<small>It's probably better to register a new account there, and use that instead of <tt>guaka</tt>.</small>

==Layout stuff==
* Use the same green, blue and white colors already in the design
* Use the current logo in its current location, unless you can come up with something better inexpensively.
* The boxy appearance of the layout should be more curved corners, and everything a little closer together.
* The left-hand is the navigation - same content, same order, just not so wikipedia-looking.
* Top is the top navigation, and I'd like some space below the navigation that I can easily switch out with either adsense or a banner-type graphic ad of my own creation.

<pre>
*/

/* no background image, just one plain color instead */ 
body {
  background:none; 
  background-color: #f5fffa; 
  font-family: arial;  /* less wp-like font */
}

/*
</pre>
=== Work on borders ===
<pre>
*/

#content,
#p-cactions li,
div #footer {
  border: 1px solid #ddf;  /* or #f5faff? */
}

/*
</pre>

=== Positioning Addthis button ===
<pre>
*/
div #p-addthis  { margin-left:10px }

/*
</pre>
=== Round corners ===
Make a few corners round, unfortunately only supported by Firefox (and other Gecko) browsers.

CSS3 has better support for this: http://24ways.org/2006/rounded-corner-boxes-the-css3-way

<pre><nowiki>*/

#p-cactions ul li, #p-cactions ul li a { -moz-border-radius-topleft: 0.4em; -moz-border-radius-topright: 0.4em; }
#content {  -moz-border-radius-bottomleft: 0.6em; -moz-border-radius-topleft: 0.6em; }
div.pBody { -moz-border-radius-topright: 0.4em; -moz-border-radius-bottomright: 0.4em; }

/* CSS3, but not working in any browsers, yet...
#content,
div.pBody,
#p-cactions ul li, 
#p-cactions ul li a {
  border-radius: 0.6em;
}
*/

/*</nowiki></pre>

===Sidebar: no bullet points, no titles===
<pre>
*/

#p-navigation li,
#p-tb li { 
   list-style:none;
   margin-left:-10px;
}

.portlet h5 { 
  display:none; 
}

#p-navigation div,
#p-search div,
#p-tb div{
  border: 1px solid #ddf
}

/*
</nowiki></pre>
*/

===H1 should be black===
Or at least not dark green.  It should also be positioned better.

<pre>
*/

h1 { color:black; }

/*
</nowiki></pre>
*/