info343/labs/2/basic.css

/* INFO 343, Autumn 2011, Lab 2, Journal
   Adapted from CSE 190 M Lab 2 originally by Victoria Kirst
   A starter CSS file that gives basic styles to various elements
   for aesthetic purposes. 
   
   NOTE: This file does NOT need changing for the lab.
*/

a {
   color: #245F5F;
   text-decoration: none;
}

a:hover {
   text-decoration: underline;
}

blockquote {
   font-style: italic;
}

body {
   font-family: "Georgia";
   color: #009097;
}


h1, h2 {
   font-weight: normal;
   font-family: "Century Gothic";
   margin: 3px;
   padding: 0px;
}

img {
   border-style: none;
   padding: 5px;
}

ul {
   padding-left: 10px;
   margin: 2px 10px 2px 5px;
}