mirror of
https://github.com/pierre42100/ComunicWeb
synced 2024-11-23 12:39:22 +00:00
40 lines
607 B
CSS
40 lines
607 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 {
|
|
background-color: #0C0C0C;
|
|
z-index: 1100;
|
|
text-align: center;
|
|
opacity: 0.5;
|
|
padding-top: 30%;
|
|
position: absolute;
|
|
top: 0%;
|
|
left: 0%;
|
|
display: block;
|
|
width: 100%;
|
|
height: 100%;
|
|
}
|
|
|
|
/**
|
|
* Wait message
|
|
*/
|
|
.waitSplashScreen .text {
|
|
padding: 50px;
|
|
font-size: 200%;
|
|
} |