<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* CSS Hörmann Architektenprogramm 
** Online Version
** Standard Button Design
*/
#piktoButtons button, button.standard, span.standard,
.orangeButtonInactive {
	font-family: 'Roboto Condensed';
	font-size: 1em;
	background-color: #FFA800;
	padding: .5em 2.5em;
	min-width: 11em;
	border: none;
	transition: .2s;
}

span.standard {
	display: block;
}

button.standard a:link, button.standard a:visited,
span.standard a:link, span.standard a:visited {
	text-decoration: none;
	color: #000;
	cursor: pointer;
}

#piktoButtons button:hover, button.standard:hover, span.standard:hover {
	background-color: #F49C07;
	color: #000;
	cursor: pointer;
}

#piktoButtons button.orangeButtonInactive, button.orangeButtonInactive {
	background-color: #C0C0C0!important;
	color: #818181;
}

button.blue {
	font-family: 'Roboto Condensed';
	font-size: 1em;
	color: #fff;
	background-color: #003A7D;
	padding: .5em 2.5em;
	min-width: 11em;
	border: none;
	transition: .2s;
}

button.blue:hover, button.blue:active, button.blue:focus {
	cursor: pointer;
	background-color: #FFA800;
	color: #000;
}
</pre></body></html>