27 lines
681 B
CSS
27 lines
681 B
CSS
/* Добавляем стили для анимации появления модального окна */
|
|
#serviceModal {
|
|
display: none;
|
|
position: fixed;
|
|
z-index: 1;
|
|
left: 0;
|
|
top: 0;
|
|
width: 100%;
|
|
height: 100%;
|
|
background-color: rgba(0, 0, 0, 0.4);
|
|
}
|
|
|
|
.modal-content {
|
|
position: relative;
|
|
background-color: #fefefe;
|
|
margin: auto;
|
|
padding: 20px;
|
|
border: 1px solid #888;
|
|
width: 80%;
|
|
max-width: 600px;
|
|
transform: scale(0);
|
|
transition: transform 0.5s ease;
|
|
}
|
|
|
|
.modal.show .modal-content {
|
|
transform: scale(1);
|
|
} |