2017-01-21 19:30:27 +01:00
|
|
|
/**
|
|
|
|
* Wait splash screen style sheet
|
|
|
|
*
|
|
|
|
* @author Pierre HUBERT
|
|
|
|
*/
|
|
|
|
|
2017-02-24 09:57:27 +01:00
|
|
|
/**
|
|
|
|
* Full splash screen
|
|
|
|
*/
|
2017-01-21 19:30:27 +01:00
|
|
|
.waitSplashScreen {
|
2021-03-06 11:23:17 +01:00
|
|
|
background-color: #001F3F;
|
|
|
|
color: white;
|
2017-01-21 19:30:27 +01:00
|
|
|
padding-top: 10%;
|
|
|
|
text-align: center;
|
2017-02-24 09:57:27 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Transparent wait splash screen
|
|
|
|
*/
|
|
|
|
.transparentWaitSplashScreen {
|
|
|
|
background-color: #0C0C0C;
|
2017-06-07 16:54:05 +02:00
|
|
|
z-index: 1100;
|
2017-02-24 09:57:27 +01:00
|
|
|
text-align: center;
|
|
|
|
opacity: 0.5;
|
|
|
|
padding-top: 30%;
|
2017-06-07 16:54:05 +02:00
|
|
|
position: absolute;
|
|
|
|
top: 0%;
|
|
|
|
left: 0%;
|
|
|
|
display: block;
|
|
|
|
width: 100%;
|
|
|
|
height: 100%;
|
2017-05-21 18:26:18 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Wait message
|
|
|
|
*/
|
|
|
|
.waitSplashScreen .text {
|
|
|
|
padding: 50px;
|
|
|
|
font-size: 200%;
|
2017-01-21 19:30:27 +01:00
|
|
|
}
|