ComunicWeb/assets/css/common/page/waitSplashScreen.css
2017-05-21 18:26:18 +02:00

38 lines
570 B
CSS

/**
* Wait splash screen style sheet
*
* @author Pierre HUBERT
*/
/**
* Full splash screen
*/
.waitSplashScreen {
background-color: rgba(128, 128, 128, 0.06);
padding-top: 10%;
text-align: center;
}
/**
* Transparent wait splash screen
*/
.transparentWaitSplashScreen {
position: fixed;
width: 100%;
height: 100%;
top: 0px;
background-color: #0C0C0C;
z-index: 500;
text-align: center;
opacity: 0.5;
padding-top: 30%;
}
/**
* Wait message
*/
.waitSplashScreen .text {
padding: 50px;
font-size: 200%;
}