/*
 * Greetings to the text mode gurillias ;)
 *
 *  this is an attempt to put the rendering rules used by the lynx
 *  text mode browser into a css stylesteet
 *
 * created by Gerd Knorr <kraxel@nytesex.org>
 */

body { 
	background: black;
	color: #30c030;
	font-family: monospace;
	width: 80ex;
}

a { 
	color: #50ff50;
	font-weight: bold;
	text-decoration: none;
}
a:hover, a:active { 
	color: black;
	background: #30c030;
}

h1,h2,h3,h4,h5,h6,p,ul,dl { 
	font-weight: normal;
	font-size: 100%;
	margin-top: 1em;
	margin-bottom: 1em;
	padding: 0;
}

h1,h2,h3 { 
	margin-left: 0ex;
}
h1 {
	text-transform: uppercase;
}
p,ul,dl { 
	margin-left: 3ex;
}
li { 
	margin-left: 5ex;
}

img {
	/* not fully correct ...
	 * Of course lynx can't display images inline, but shows
	 * the filename and makes the image a link. */
	display: none;
}
