ComunicWeb/assets/css/common/page/waitSplashScreen.css

41 lines
607 B
CSS
Raw Normal View History

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 {
2021-03-06 10:23:17 +00:00
background-color: #001F3F;
color: white;
2017-01-21 18:30:27 +00:00
padding-top: 10%;
text-align: center;
2017-02-24 08:57:27 +00:00
}
/**
* Transparent wait splash screen
*/
.transparentWaitSplashScreen {
background-color: #0C0C0C;
2017-06-07 14:54:05 +00:00
z-index: 1100;
2017-02-24 08:57:27 +00:00
text-align: center;
opacity: 0.5;
padding-top: 30%;
2017-06-07 14:54:05 +00:00
position: absolute;
top: 0%;
left: 0%;
display: block;
width: 100%;
height: 100%;
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
}