Home

WIKI CSS

/* Reset html/body formatting for all browsers */
body, html {
  border: 0;
  margin: 0;
  padding: 0;
}

html {
  margin: 0 3em 0 3em;
  border: 1px solid black;
  background-color: #333;
}

body {
  background-color: white;
  font-family: Verdana, sans-serif;
}

/* Turn off the GotoBar and things. We'll just put links in the SideBar */
.footer hr,
.footer form,
.edit.bar br,
.gotobar {
  display: none;
}

/* I like to be able to ready the "g" in links, so make the underline waayy under */
a, a:visited {
  text-decoration: none;
  font-weight: bold;
  color: #293f49;
  color: #003249;
  border-bottom: 1px solid #003249;
}

a:hover {
  color: #990000;
}


.footer {
  clear: left;
  border-top: 1px solid black;
  padding: 5px;
}

.footer a {
  margin-right: 1em;
}


/* These are all the things that make up the body of the current page */
/* Basically, stuff that goes into the 'content' area */
div.diff,
.header h1,
.content,
div.rc {

  /* No margins in general, but offset from the left of the screen
     to make room for the sidebar */
  margin: 0 0 0 200px;

  /* Top and bottom borders are to fix a firefox browser bug */
  border: 1px solid #fff;

  padding-left: 1em;
  padding-right: 1em;

  line-height: 1.3em; /* Be friendly lookin! */
}

/* What is this for? Non-IE browsers? */
* html div.diff,
* html .content,
* html div.rc {
  position: relative;
  top: -63px;
}


.header h1 {
  padding-left: 0.5em;
}


.header h1 a {
  display: block;
  border-bottom: 0px solid black;
}


a.logo {
  float: left;
  clear: both;
  border: 0;
  background-color: #8292b1;
  border-right: 1px solid black;
  text-align: center;
  display: none;
}

img.logo {
  border: 0;
}

pre {
  padding: 0.5em;
  border: 1px solid #999;
  background-color: #ddd;
  line-height: 1.1em; /* None of that friendly lookin stuff here! */
}

dd {
  margin-left: 2em;
  margin-bottom: 1em;
}


#header {
  margin: 0;
  padding: 0;
  color: white;
  border-top: 1px solid black;
  border-bottom: 2px solid #666;
  /* background: url(img/bg-bluishfadetoblack3.png) repeat-x; */
  background: url("http://dc.pm.org/img/dcpmheader.jpg") no-repeat scroll 100% 0 black;
  height: 180px;
  margin-bottom: 0.5em;
}

#header h1 {
  display: block;
  font-size: 50px;
  margin: 60px 0 0 20px;
  text-align: center;
  font-weight: normal;
  position: absolute;
  left: 1em;
  top: 0;
  text-shadow: #000 -1px 0 1px, #000 0 1px 1px,
    #000 1px 0 1px, #000 0 -1px 1px;

}

#header h2 {
  display: block;
  font-size: 15px;
  margin-top: 8px;
  text-align: left;
  font-weight: normal;
  position: relative;
  top: 56px; left: 315px;
  width: 50%;
}

#header a, #header a:visited {
  text-decoration: none;
  font-weight: bold;
  color: #fff;
  border-bottom: 1px solid #003249;
  border-color: #000;
}

#header a:hover {
  color: #fff;
}

.editfile h1 {
  font-size: 140%;
}

.editfile h2 {
  font-size: 120%;
}

/**************
*** Sidebar ***
***************/

div.sidebar a,
div.sidebar a:visited {
  border-bottom: 0;
}

/* Put the sidebar on the left */

div.sidebar {
  float: left;
  clear: left;
  width: 195px;
  font-size: 75%;
  padding-left: 5px;
  top: -4em;
  position: relative;
  overflow: hidden;
}

div.sidebar h2 {
  border-bottom: 1px solid #666;
  margin-right: 1em;
  margin-bottom: 2px;
  padding-bottom: 2px;
}

div.sidebar a,
div.sidebar a:hover,
div.sidebar a:visited {
  font-weight: normal;
}

div.sidebar p {
  margin: 0;
}

div.sidebar input {
  margin-top: 0;
/*  width: 185px; */
  color: #aaa;
}

.sidebar .rss > ul {
  /* list-style: none;  */
  margin-left: 0;
  padding-left: 1em;
}

.sidebar .rss ul ul {
  display: none;
  margin-left: 0;
  padding-left: 2em;
}


div.sidebar .rss p {
  display: inline;
}

div.sidebar .rss .time,
div.sidebar .rss li .description {
  display: none;
}

div.sidebar .rss li:hover .description {
  display: block;
}

div.sidebar ul { margin-top: 0; }


div.sidebar ul {
  margin-left: 1em;
  padding-left: 0px;
}

div.sidebar li {
  text-indent: -1em;
  list-style: none;
  font-size: 14px;
}

/* wiki tables */

table.user {
  border-left: 1px solid black;
  border-top: 1px solid black;
  border-spacing: 0;
}
table.user td {
  border-right: 1px solid black;
  border-bottom: 1px solid black;
  padding: 5px;
}

/* wiki right-aligned images */

.imgright {
  margin: 1em;
}