mirror of
https://github.com/cp6/my-idlers.git
synced 2024-11-16 23:42:32 +01:00
23 lines
307 B
CSS
23 lines
307 B
CSS
|
/*
|
||
|
Custom styles go in here
|
||
|
*/
|
||
|
|
||
|
.modal-mask {
|
||
|
position: fixed;
|
||
|
z-index: 9998;
|
||
|
top: 0;
|
||
|
left: 0;
|
||
|
width: 100%;
|
||
|
height: 100%;
|
||
|
background-color: rgba(0, 0, 0, .5);
|
||
|
transition: opacity .3s ease;
|
||
|
}
|
||
|
|
||
|
.modal-body {
|
||
|
margin: 10px 0;
|
||
|
}
|
||
|
|
||
|
.modal {
|
||
|
display: contents !important;
|
||
|
}
|