info343/minilabs/15/base.css

/*
base.css
Base CSS styles for Mini-lab 15: Responsive Layout
*/

body {
   font: 100%/1.2 "Lucida Grande", "Lucida Sans Unicode", sans-serif;
}

ul {
   margin: 0;
   padding: 0;
   list-style-type: none;
}

header {
   float: left;
   width: 20%;
}

nav li {
   background-color: lightblue;
   border-bottom: solid 1px black;
   height: 2em;
   line-height: 2em;
}

nav li:last-child {
   border-bottom: none;
}

nav li a {
   display: block;
   height: 2em;
   line-height: 2em;
}

#contents {
   float: right;
/*   margin-left: 5%;*/
   width: 75%;
   padding-top: 5em;
}

#contents li {
   float: left;
   background-color: fuchsia;
   margin-bottom: 1em;
}

nav select {
   display: none;
}