<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/*
Styles for HTML5 File Drag &amp; Drop demonstration
Featured on SitePoint.com
Developed by Craig Buckler (@craigbuckler) of OptimalWorks.net
*/
legend {
	font-weight: bold;
	color: #333;
}

#filedrag {
	display: none;
	font-weight: bold;
	text-align: center;
	padding: 1em 0;
	margin-top: 4em !important;
	width: 100%;
	min-height: 200px;
	color: #087021;
	border: 2px dashed #087021;
	border-radius: 7px;
	cursor: default;
	background-attachment: inherit;
	background-repeat: no-repeat;
	background-position: center;
}

#filedrag.hover, #filedragEni.hover {
	color: #087021;
	border-color: #087021;
	border-style: solid;
	box-shadow: inset 0 3px 4px #888;
}

img {
	max-width: 100%;
}

pre {
	width: 95%;
	height: 8em;
	font-family: monospace;
	font-size: 0.9em;
	padding: 1px 2px;
	margin: 0 0 1em auto;
	border: 1px inset #666;
	background-color: #eee;
	overflow: auto;
}

#messages, #messagesDocAnexos {
	padding: 0 10px;
	margin: 2em 0;
	/*border: 1px solid #999;*/
}

#progress p {
	display: block;
	width: 240px;
	padding: 2px 5px;
	margin: 2px 0;
	border: 1px inset #446;
	border-radius: 5px;
	background: #eee url("progress.png") 100% 0 repeat-y;
}

#progress p.success {
	background: #0c0 none 0 0 no-repeat;
}

#progress p.failed {
	background: #c00 none 0 0 no-repeat;
}</pre></body></html>