2017-01-21 18:30:27 +00:00
|
|
|
/**
|
|
|
|
* Wait splash screen style sheet
|
|
|
|
*
|
|
|
|
* @author Pierre HUBERT
|
|
|
|
*/
|
|
|
|
|
2017-02-24 08:57:27 +00:00
|
|
|
/**
|
|
|
|
* Full splash screen
|
|
|
|
*/
|
2017-01-21 18:30:27 +00:00
|
|
|
.waitSplashScreen {
|
|
|
|
background-color: rgba(128, 128, 128, 0.06);
|
|
|
|
padding-top: 10%;
|
|
|
|
text-align: center;
|
2017-02-24 08:57:27 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* 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%;
|
2017-05-21 16:26:18 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Wait message
|
|
|
|
*/
|
|
|
|
.waitSplashScreen .text {
|
|
|
|
padding: 50px;
|
|
|
|
font-size: 200%;
|
2017-01-21 18:30:27 +00:00
|
|
|
}
|