Guide to Rochester, New York

Annotated CSS File for this Page

Declare colors for background and hyperlinks

body { background-color: #999; }, a:link, a:visited { color: #666; }, a:hover { color: #999; }, a:active { color: navy; }

Declare attributes for h3

h3 { color: #0066CC; font-size: 16px; text-align: left; border-bottom: 1px solid gray;}

Create enclosing box and boxes that go within it

.outsideBox { width: 800px; height: 600px; border-width: 1px; border-style: solid; background-color: #FFFCCC;}

Creates box for header div

.header { text-align: center; color: #0066CC; border-bottom: 1px solid; border-bottom-color: gray;}

Creates navigation box

.navBox { width: auto; position: absolute; text-align: right; font-size: 19px; font-weight: bold; font-style: oblique; font-family: monospace,serif,sans-serif; padding-right: 1%; border-right: 1px solid; border-bottom: 1px solid; border-color: gray;}

Creates the box for the content

.contentBox { position: absolute; left: 200px; width: 600px; text-align: center;}

Declare special formatting for paragraph tag in contentBox divs

.contentBox p { text-align: left; font-size: 17px; font-family: serif; margin-left: 6%; margin-right: 6%;}