mirror of
https://github.com/piskelapp/piskel.git
synced 2023-08-10 21:12:52 +03:00
30 lines
451 B
CSS
30 lines
451 B
CSS
#dialog-container-wrapper {
|
|
position: absolute;
|
|
z-index: 20000;
|
|
|
|
top: 0;
|
|
right: 0;
|
|
bottom: 0;
|
|
left: 0;
|
|
|
|
padding: 50px 150px;
|
|
|
|
box-sizing: border-box;
|
|
-moz-box-sizing : border-box;
|
|
|
|
color: white;
|
|
background: rgba(0,0,0,0.5);
|
|
display : none;
|
|
}
|
|
|
|
#dialog-container {
|
|
width: 100%;
|
|
height: 100%;
|
|
|
|
box-sizing: border-box;
|
|
-moz-box-sizing : border-box;
|
|
|
|
border-radius: 3px;
|
|
background: rgba(0,0,0,0.9);
|
|
overflow: auto;
|
|
} |