<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/*
*
* styles/prosilver/theme/loading_indicator.css
*
* @package th23_loading_indicator
* @author Thorsten Hartmann (www.th23.net)
* @copyright (c) 2008 by Thorsten Hartmann (www.th23.net)
* @license http://opensource.org/licenses/gpl-license.php GNU Public License
* @modified by dmzx (c) 2014 (www.dmzx-web.net) 
*/

#loading-indicator {
	top: 40%;
	left: 45%;
	position: fixed;
	z-index: 1000;
	display: none;
	opacity: 1.0;
	-moz-opacity: 1.0;
	-khtml-opacity: 1.0;
	filter: alpha(opacity=100);
	-ms-filter: "alpha(opacity=100)";
	background: -webkit-linear-gradient(#f2cece, #FFFFFF, #FFFFFF, #f2cece);
    background: -o-linear-gradient(#f2cece, #FFFFFF, #FFFFFF, #f2cece);
    background: -moz-linear-gradient(#f2cece, #FFFFFF, #FFFFFF, #f2cece);
    background: linear-gradient(#f2cece, #FFFFFF, #FFFFFF, #f2cece);
    border: 2px solid #BF0000;
    -webkit-border-radius: 0px;
    -o-border-radius: 0px;
    -moz-border-radius: 0px;
    border-radius: 0px;
	padding: 5px;
    overflow: hidden;
}

#loading-indicator span {
	background: url("./images/loading_indicator.gif") 0 40% no-repeat;
	padding-left: 26px;
	vertical-align: bottom;
	font-weight: italic;
	font-size: 1.3em;
	color: #000000;
}</pre></body></html>