/* testblog.css 
 * Style Sheet for Pann's simple weblog */

body { color:black; background-color:white; }

h1, h2, h3, h5, h6, p { margin:1%; }

h1, h2, h3, h5, h6 {
  font-family:sans-serif;
}


p { font-size:1.0em; font-family:serif; }

/* code { font-size:110%; font-weight:600; } */

/* h1 is the Blog Title */
h1 {
  color:navy; background:silver; text-align:center;
  font-size:2em; font-weight:bold;
}

/* dl is used to display the Article Title and Creation Date */
dl {
  color:white; background-color:navy; margin:0 0.4em 0.4em 0.4em;
  font-size:1.2em; font-family:sans-serif; font-weight:bold;
}
dt { float:left; text-align:left; margin:0 0 0 0.5em; }
dd { text-align:right; margin:0 0.5em 0 0; }

/* h2 is used for sub-headings within blog entries */
h2 {
  font-size:1.1em; font-weight:bold;
}

/* h3 is used for sub-sub-headings within blog entries */
h3 {
  font-size:1.0em; font-weight:bold;
}

/* h5 is the Modification Date */
h5 {
  font-size:.8em; font-style:italic;
  color:gray; background-color:white;
}

/* h6 is used for the Copyright Notice, etc. */
h6 {
  font-size:.6em; font-weight:bold;
  text-align:center;
}

pre { margin:0 0 .5em 2em; }

