blob: 9bb7c6a2f89a209b696811fd9ac9ab833e8d18f6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
.overlay {
background-color: rgba(0, 0, 0, 0.6);
}
.cnt {
background-color: var(--bg-modal);
color: var(--color-text);
max-width: 300px;
line-height: 1.4;
transform: translate(-50%, -50%) scale(1.2);
opacity: 0.6;
transition: all 0.3s ease;
}
.afterOpen {
opacity: 1;
transform: translate(-50%, -50%) scale(1);
}
.btngrp {
display: flex;
align-items: center;
justify-content: center;
margin-top: 30px;
}
|