15 lines
250 B
CSS
15 lines
250 B
CSS
.modal {
|
|
display: none;
|
|
&.open{
|
|
display: block;
|
|
}
|
|
.overlay{
|
|
position: fixed;
|
|
top: 0;
|
|
left: 0;
|
|
width: 100%;
|
|
height: 100%;
|
|
background: #0000009C;
|
|
z-index: 10000000;
|
|
}
|
|
} |