﻿/* CSS for Wk11 Assignment-Floats/Positioning */

{
  margin: 0px;
  padding: 0px;
}

li {
  font-size: small;
list-style-type: circle;
}

body {
  background-color: #e2edff;
  font-family: Verdana, Helvetica, Arial, sans-serif;
  line-height: 125%;
  padding: 0;
  margin: 0;
}

#topper  {
  background-color: #ccc;
}

#tagline p {
  font-style: italic;
  font-family: Georgia, Times, serif;
  background-color: #bed8f3;
  border-top: 3px solid #7da5d8;
  border-bottom: 3px solid #7da5d8;
  padding-top: .2em;
  padding-bottom: .2em;
  padding-left: .8em;
  margin: 0px;
}

h1, h2, h3 {
  font-family: "Trebuchet MS", Helvetica, Arial, sans-serif;
}
h1 {
  font-size: x-large;
  background-color: navy;
  color: white;
  padding-top: 2em;
  padding-bottom: .2em;
  padding-left: .4em;
  margin: 0;
}
h2 {
  color: navy;
  font-size: 130%;
  font-weight: normal;
  padding-top: 15px;
}

h2, ul {
  margin-top: 15px;
}

/*
This section deals with the position of items on the screen.
It uses absolute positioning - fixed x and y coordinates measured
from the top-left corner of the browser's content display.
*/

#navigation, #bodycontent, #header {
  position: absolute;
}

#navigation, #bodycontent {
position: relative;
  top: 107px;
}

#bodycontent {
  left: 200px;
  max-width: 80%;
}

#header  {
  width: 100%;
  Border-top: 3px solid #7DA5D8;
}

#navigation  {
  width: 180px;
  background-color: #7DA5D8;
}

/*took out p-color & "nudge" example to clean up the page
p {
  background-color: #ccc;
}

.nudged {
  position: relative;
  top: 10px;
  left: 10px;
}*/

#pullquote  {
  font-size: large;
  width: 200px;
  height: 70px;
  background-color: #7DA5D8;
}

.feature {
  width: 200px;
  height: 162px;
  float: right;
  margin: 5px;
  clear: both;
}