kezenh-modal-package
Version:
A simple modal package, to help you create your first react website !
41 lines (38 loc) • 749 B
CSS
.modal {
box-sizing: border-box;
background: white;
border-radius: 7px;
box-shadow: black 0px 0px 5px 2px;
width: 500px;
height: 48px;
padding: 0 30px;
display: flex;
align-items: center;
}
#modalMask {
background: rgba(0, 0, 0, 0.75);
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
display: none;
justify-content: center;
align-items: center;
}
.close {
width: 10px;
}
.closeBox {
width: 30px;
height: 30px;
display: flex;
justify-content: center;
align-items: center;
background: black;
border-radius: 50%;
position: relative;
top: -22px;
left: 328px;
cursor: pointer;
}