View file themes/default/apps/cpanel/statics/css/libs/waitME.css

File size: 1.01Kb
body.waitme-on {
	 overflow: hidden !important;
}
 body.waitme-on div.cl-waitme {
	 position: fixed;
	 left: 0;
	 top: 0;
	 right: 0;
	 bottom: 0;
	 width: 100vw;
	 height: 100vh;
	 background: rgba(0, 0, 0, 0.3);
	 z-index: 1200;
}
 body.waitme-on div.cl-waitme div.cl-waitme__content {
	 width: 100%;
	 height: 100%;
	 display: flex;
	 flex-direction: row;
	 flex-wrap: nowrap;
	 justify-content: center;
	 align-items: center;
	 margin: 0px !important;
	 transform: unset !important;
	 height: 100vh !important;
	 padding: 7vw;
}
 body.waitme-on div.cl-waitme div.cl-waitme__content div.cl-waitme__spinner {
	 width: 45px;
	 height: 45px;
	 border-radius: 100%;
	 border-width: 5px;
	 border-style: solid;
	 border-left-color: rgba(255, 255, 255, 0.3);
	 border-right-color: rgba(255, 255, 255, 0.3);
	 border-bottom-color: rgba(255, 255, 255, 0.3);
	 border-top-color: #0084f5;
	 animation: rotation 0.55s infinite linear;
}
 @keyframes rotation {
	 0% {
		 transform: rotate(0);
	}
	 100% {
		 transform: rotate(360deg);
	}
}