<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">button.css3button {
	font-family: Kabel;
	font-size: 16px;
	color: #005ebb;
	padding: 5px 10px;
	background: -moz-linear-gradient(
		top,
		#1be02f 0%,
		#abebba 50%,
		#1be02f);
	background: -webkit-gradient(
		linear, left top, left bottom,
		from(#1be02f),
		color-stop(0.50, #abebba),
		to(#1be02f));
	-moz-border-radius: 10px;
	-webkit-border-radius: 10px;
	border-radius: 10px;
	border: 3px solid #005ebb;
	-moz-box-shadow:
		0px 1px 3px rgba(255,255,255,0.5),
		inset 0px 0px 3px rgba(204,47,204,1);
	-webkit-box-shadow:
		0px 1px 3px rgba(255,255,255,0.5),
		inset 0px 0px 3px rgba(204,47,204,1);
	box-shadow:
		0px 1px 3px rgba(255,255,255,0.5),
		inset 0px 0px 3px rgba(204,47,204,1);
	text-shadow:
		0px -1px 0px rgba(240,240,240,0.1),
		0px 1px 0px rgba(224,45,224,1);
}
</pre></body></html>