This commit is contained in:
Andrey Sharshov
2025-11-16 18:48:06 +01:00
commit c02d04073f
481 changed files with 52066 additions and 0 deletions

View File

@@ -0,0 +1,42 @@
.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;
}
}
}