To Notes

CSS File for Course Website

* {
  font-family: Verdana, Arial, sans-serif;
}

body {
  background: #f0f0ff;
}

a:link, a:visited {
  color: #702d2d;
  text-decoration: none; 
}

a:hover {
  color: #ff7600;
  text-decoration: none;
}

#content {
   position: absolute;
   top: 40px;
   left: 150px;
   width: 600px;
}

#content .title {
   text-align: center;
}

#content p {
   padding: 0px 0px 10px 0px;
}

#content h1, h2, h3 {
    color: #004D9A; 
}

#content h1 {
   font: bold 120% Helvetica, Verdana, Arial, sans-serif;
   margin: 10px 0px 10px 0px;
}

#content h2 {
   font: bold 115% Helvetica, Verdana, Arial, sans-serif;
   margin: 10px 0px 10px 0px;
}

#content h3 {
   font: bold 110% Helvetica, Verdana, Arial, sans-serif;
   margin: 10px 0px 0px 0px;
}

#content ul .nobul, #content ol .nobul, #content ol ul .nobul {
	list-style-type: none;
}

#content table
{
    border-collapse: collapse;
    margin: 10px 0px 10px 0px;
}

#content table td
{
    border: 1px solid silver;
    padding: 5px;
}

#content table th
{
    border: 1px none;
    border-collapse: collapse;
    padding: 5px;
}

#links {
   position: absolute;
   top: 40px;
   left: 0px;
   width: 125px;
   border-right: 1px solid #ccc;
   text-align: right;
   font-size: 85%;
   padding-right: 10px;
}

#links a {
  text-decoration: none;
}

/* Color of headers matches
   DePaul tree of learning image */
#links h1, h2, h3 {
    color: #004D9A; 
}

#links h1 {
   font: bold 250% Impact, serif;
   margin: 10px 0px 0px 0px;
}

#links h2 {
   font: bold 180% Impact, serif;
   margin: 3px 0px 15px 0px;
}

pre {
   font: bold 110% "Courier New", Courier, monospace;
   margin: 15px 0px 15px 30px;
}

.tt {
   font: bold 110% "Courier New", Courier, monospace;
}

ol { 
   list-style-type : decimal; 
}