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

30 lines
477 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 {
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-01-21 18:30:27 +00:00
}