36 lines
604 B
CSS
36 lines
604 B
CSS
button {
|
|
display: block;
|
|
margin: 20px auto;
|
|
background: crimson;
|
|
color: white;
|
|
border: 0;
|
|
padding: 6px 10px;
|
|
}
|
|
|
|
.popup-wrapper {
|
|
background: rgba(0, 0, 0, 0.5);
|
|
position: fixed;
|
|
top: 0;
|
|
left: 0;
|
|
width: 100%;
|
|
height: 100%;
|
|
display: none
|
|
}
|
|
|
|
.popup {
|
|
font-family: Arial;
|
|
text-align: center;
|
|
width: 100%;
|
|
max-width: 300px;
|
|
margin: 10% auto;
|
|
padding: 20px;
|
|
background: white;
|
|
position: relative;
|
|
}
|
|
|
|
.popup-close {
|
|
position: absolute;
|
|
top: 5px;
|
|
right: 8px;
|
|
cursor: pointer;
|
|
} |