/**************************************************************************************** RegStyle.css - Contains the style sheet information for assignment #4. Created by: Chris Juffre, cjuffre@cs.uml.edu February 27, 2002 ****************************************************************************************/ /* These are the styles used when instructions are rendered normal (RegularInstructions) and when the mouse is over them (OverInstructions). */ .RegularInstructions {font-size: 8pt; font-weight: normal;} .OverInstructions {font-size: 14pt; font-weight: bold; text-align: center; font-family: "Arial";} /* These are the styles used when buttons have the mouse over them (OverButton) and when the mouse is not over them (NotOverButton). */ .OverButton {background-color: lime; border: .25mm solid black; color: blue;} .NotOverButton {background-color: grey; color: black; border-right: .25 solid black; border-bottom: .25 solid black;} /* These are different styles for margin settings and indentation. The indentation style also resets the font size to 12 points. */ .NoMargins {Margin: 0 0 0 0;} .1cmLeftMargin {Margin: 0 0 0 1cm;} .1cmIndent {font-size: 12pt; text-indent: 1cm; text-decoration: none;} /* These are different styles for text transformation. */ .ProperNouns {text-transform: capitalize;} .ABBR {text-transform: uppercase;} /* This is the style for a required field. */ .Required {font-weight: 900; font-size: 12pt; font-style: italic; text-decoration: none; color: red;} /* This is for a no border setting. */ .NoBorders {border: 0 solid white;} /* The below are the defaults styles set to each tag. This is how the style will look unless specifically overridden. */ h1 {font-size: 32pt; font-weight: bold; text-align: center; text-decoration: underline; margin-bottom: 10mm; margin-top: 2mm;} h2 {font-size: 16pt; text-align: center; font-style: italic; color: FF0000 margin-bottom: 10mm; font-family: "Times";} h3 {font-size: 16pt; text-decoration: underline; color: 8B0000; margin-bottom: 8mm; } h4 {text-align: center; font-size: 8pt; margin-top: 3mm; margin-bottom: 3mm; text-decoration: none; } table {border: .25mm solid black; margin-bottom: 10mm; background-color: FFE4C4;} td {text-align: left; padding-right: 3mm; padding-top: 1mm; font-weight: lighter; font-size: 12pt;} p {font-size: 12pt; margin-top: .5mm; margin-bottom: 5mm; color: black; text-decoration: none;} /* Anchor tags have special cases. The only one I need to modify is when the mouse is over the text. In this case we make it a bigger font and slightly darker color. I also set the anchors to have some padding to their left of 8 pixels. */ a {padding-left: 8px;} a:hover {font-size: 15pt; color: mediumblue;}