/*=====================================================================*/ /* Cascading Style Sheet for Assignment 2 */ /*=====================================================================*/ /* by David Boldt and Lorna Schmid May 6, 1998 */ /*---------------------------------------------------------------------*/ /* Center level 1 and level 2 headings */ H1, H2 { text-align: center } /* Three blank lines before a level 3 heading */ H3 { margin-top: 3.0em } /* Ordered lists should numbered by capital letter */ OL LI { list-style: upper-alpha } /* Right-justify the address block */ ADDRESS { text-align: right } /* Set the background and text colors for a page */ BODY { background: white; color: black } /* Indent the first line of each paragraph by twice the font size */ P { text-indent: 2em } /* A paragraph class "biblilo" that creates a negative indent */ P.biblio { margin-left: 4em; text-indent: -4em; } /* A paragraph class "my" which changes the text color to green */ P.my { color: green } /* A class definition to indent all lines of an element */ .indented { margin-left: 2em } /* define a high-lighting tag */ SPAN.highlight { background: yellow }