43 lines
821 B
CSS
43 lines
821 B
CSS
.cfs-popup {
|
|
transition: all ease-in-out 0.2s;
|
|
|
|
.cfs-popup__overlay {
|
|
position: fixed;
|
|
left: 0;
|
|
right: 0;
|
|
top: 0;
|
|
bottom: 0;
|
|
background-color: #26262680;
|
|
}
|
|
|
|
.cfs-popup__body {
|
|
position: fixed;
|
|
left: 50%;
|
|
top: 50%;
|
|
transform: translate(-50%, -50%);
|
|
transform-origin: top left;
|
|
display: flex;
|
|
flex-direction: column;
|
|
row-gap: 8px;
|
|
width: 600px;
|
|
text-transform: uppercase;
|
|
height: 250px;
|
|
justify-content: center;
|
|
border-radius: 10px;
|
|
text-align: center;
|
|
transition: all ease-in-out 0.2s;
|
|
background-color: #161719d5;
|
|
color: white;
|
|
font-family: Oxanium, Arial, Helvetica, sans-serif;
|
|
h1 {
|
|
font-size: 32px;
|
|
font-weight: normal;
|
|
}
|
|
|
|
span {
|
|
font-size: 40px;
|
|
font-weight: bold;
|
|
}
|
|
}
|
|
}
|