/* =========================================================
Stylesheet für die Beispielsite aus "Einstieg in CSS"
Datei: bildschirm.css
Datum: ...
Autor: ...
Aufbau: 1. Allgemeine Styles
        2. Styles für Layoutbereiche
        3. Sonstige Styles
========================================================== */

@media screen {

	body {
		background: #f7f2e0;
	}
	ul {
		 
		 padding:0; 
		 margin:0; 
		 font-size: 85%;
		 
	}
	li {
		list-style-type: none;
	
		margin:0;
	}
	a  {
		display: block;
		text-decoration: none;
		color: black;
		padding: 2px;
		
	}
	a:hover {
		color: red;
	}


} /* Ende @media - nicht löschen! */ 

/* ======================================
   E N D E bildschirm.css
====================================== */
