styles.css

  1: body {
  2: 	font-family: Arial, sans-serif;
  3: 	font-size: 10pt;
  4: 	background-color: #ffffff;
  5: 	color: #000000;
  6: }
  7: 
  8: h1 {
  9: 	width: 600px;
 10: 	font-family: Arial, sans-serif;
 11: 	font-size: 16pt;
 12: 	font-weight: bold;
 13: 	color: #000000;
 14: 	border-bottom: solid 4px #000000;
 15: }
 16: 
 17: .question {
 18: 	font-weight: bold;
 19: 	font-size: 12pt;
 20: }
 21: 
 22: fieldset {
 23: 	border: solid 1px #666666;
 24: 	width: 300px;
 25: 	padding: 0 10px 10px 10px;
 26: 	margin-bottom: 15px;
 27: }
 28: 
 29: legend {
 30: 	color: #ffffff;
 31: 	background: #336633;
 32: 	border: 1px outset #cccccc;
 33: 	padding: 2px 2px 0 2px;
 34: 	font-weight: bold;
 35: }
 36: 
 37: .currentResults {
 38: 	font-size: 8pt;
 39: }
 40: 
 41: .vote {
 42: 	margin-top: 4px;
 43: 	padding: 0 0 0 0;
 44: }
 45: 
 46: .vote p {
 47: 	margin-top: 6px;
 48: 	margin-bottom: 6px;
 49: }
 50: 
 51: .errorMessage {
 52: 	font-family: Arial, sans-serif;
 53: 	font-weight: bold;
 54: 	font-size: 10pt;
 55: 	color: #ff0000;
 56: }
 57: 
 58: .credit {
 59: 	font-family: Arial, sans-serif;
 60: 	font-size: 8pt;
 61: 	color: #696969;
 62: }
 63: 
 64: a:link, a:visited, a:active {
 65: 	text-decoration: none;
 66: 	background: transparent;
 67: }
 68: 
 69: a:link {
 70: 	color: #0000ff;
 71: }
 72: 
 73: a:visited {
 74: 	color: #990099;
 75: }
 76: 
 77: a:active {
 78: 	color: #ff0000;
 79: }
 80: 
 81: a:link:hover, a:visited:hover, a:active:hover {
 82: 	color: #ff0000;
 83: }
 84: 
 85: input.submit {
 86: 	color: #000000;
 87: 	background: #99cc99;
 88: 	border: 2px outset #cccccc;
 89: }
 90: 
 91: /* Default for the poll bars */
 92: 
 93: .pollBar {
 94: 	height: 15px;
 95: 	background: #ff0000;
 96: 	border: 1px solid #000000;
 97: }
 98: 
 99: /* Poll bar ids are sequential and one-indexed */
100: 
101: #pollBar1 {
102: 	background: #ff0000;
103: }
104: 
105: #pollBar2 {
106: 	background: #00ff00;
107: }
108: 
109: #pollBar3 {
110: 	background: #0000ff;
111: }
112: 
113: #pollBar4 {
114: 	background: #ffff00;
115: }
116: 
117: #pollBar5 {
118: 	background: #00ffff;
119: }
120: 
121: #pollBar6 {
122: 	background: #ff00ff;
123: }