33 lines
518 B
CSS
33 lines
518 B
CSS
.slide-modal {
|
|
display: none;
|
|
position: fixed;
|
|
z-index: 1;
|
|
padding-top: 10px;
|
|
left: 0;
|
|
top: 0;
|
|
width: 100%;
|
|
height: 100%;
|
|
overflow: auto;
|
|
background-color: #000000;
|
|
}
|
|
|
|
.slide-modal-content {
|
|
/* position: relative; */
|
|
margin: auto;
|
|
padding: 0;
|
|
width: 100%;
|
|
max-width: 1200px;
|
|
}
|
|
|
|
.close {
|
|
color: white;
|
|
position: absolute;
|
|
top: 10px;
|
|
right: 25px;
|
|
font-size: 35px;
|
|
font-weight: bold;
|
|
}
|
|
|
|
.cursor {
|
|
cursor: pointer;
|
|
} |