toloframework
Version:
Javascript/HTML/CSS compiler for Firefox OS or nodewebkit apps using modules in the nodejs style.
22 lines (19 loc) • 360 B
CSS
div.tp-dark-screen {
position: fixed;
margin: 0;
padding: 0;
left: 0;
top: 0;
right: 0;
bottom: 0;
width: auto;
height: auto;
z-index: 999999;
background-color: transparent;
transition: background-color .2s;
}
div.tp-dark-screen.fade-in {
transition: background-color .5s;
background-color: rgba(0,0,0,.4);
cursor: pointer;
}