﻿
/*30. Dezember 2020*/
/*Mario Farbpalette und weitere Einstellungen wie Schriftart und Schriftgröße Mario 02.08.2023*/



input:focus {
  background-color: yellow; /*    das Eingabefeld wird gelb markiert       */}

.start-input:focus {
  background: #efefef;
  color: black;
}

.blue-input:focus {
  background: yellow;
  color: blue;
}

/*         Schrift in Text Fett, Kursi, Unterlinie
*/
.underline {
		text-decoration: underline;
	}



/*        Farben     */

.black {
		color: #000000;
	}

.braun {
		color: #800000;
	}

.peru {
		color: #CD4B3C;  /* braun wie bei Genitiv */
	}




.purple-lila {             
		color: #800080;     /* lila*/	
	}

.rot {
		color: #FF0000;
	}

.blau {
		color: #0000FF;
	}





.grün {
		color: #008000;
	}

.hellgrün {
		color: #00ff00;
	}
	
	
	
	
.fuchsia {
		color: #FF00FF;
	}
.grün {
		color: #008000;
	}

/*              SCHRIFT-TYPEN            */

.Times_large_18px {
		font-size: large;
		font-family: Times New Roman;
	}

.Times_large_24px {
		font-size: x-large;
		font-family: Times New Roman;
	}


.Arial_medium {
		font-size: medium;
		font-family: Arial, Helvetica, sans-serif;
	}


.Arial_large {
		font-size: large;
		font-family: Arial, Helvetica, sans-serif;
	}


.Arial_8px {
		font-size: 8px;
		font-family: Arial, Helvetica, sans-serif;
	}

.Arial_10px {
		font-size: 10px;
		font-family: Arial, Helvetica, sans-serif;
	}

.Arial_12px {
		font-size: 12px;
		font-family: Arial, Helvetica, sans-serif;
	}

.Arial_14px {
		font-size: 14px;
		font-family: Arial, Helvetica, sans-serif;
	}

.Arial_15px {
		font-size: 15px;
		font-family: Arial, Helvetica, sans-serif;
	}

.Arial_16px {
		font-size: 16px;
		font-family: Arial, Helvetica, sans-serif;
	}

.Arial_17px {
		font-size: 17px;
		font-family: Arial, Helvetica, sans-serif;
	}



.nowrap {
	white-space: nowrap;     /* kein Umbruch in Tabelle Zelle*/
	}