Spaces:
No application file
No application file
File size: 2,233 Bytes
d2897cd |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 |
.mf-modal {
position: relative;
opacity: 1;
z-index: 2000;
margin: auto;
padding: 45px;
border-radius: 4px;
border-width: 6px 1px 1px 1px;
border-style: solid;
background: #fff;
max-width: 40em;
text-align: center;
.mf-content {
margin-bottom: 30px;
.mf-headline {
font-size: 1.6em;
font-weight: 600;
}
.mf-tagline {
font-size: 1.2em;
font-weight: normal;
margin-top: 4px;
}
a.mf-link {
display: block;
max-width: 70%;
padding: 10px;
margin: auto;
font-size: 1.2em;
}
}
.mf-modal-close {
position: fixed;
top: 5px;
right: 8px;
a {
font-size: 1.4em;
color: #757575;
opacity: .4;
text-decoration: none;
}
a:hover {
opacity: .8;
text-decoration: none;
}
}
.mauticform-input, .mauticform-row select, .mauticform-button, .mauticform-pagebreak {
width: 75%;
height: 35px;
margin-bottom: 5px;
}
}
.mf-responsive.mf-modal, .mf-responsive .mf-modal {
width: 90%;
padding: 10px;
}
{% if preview is not empty %}
{{ include('@MauticFocus/Builder/Modal/animations.less.twig', with_context=false) }}
{{ include('@MauticFocus/Builder/Modal/overlay.less.twig', with_context=false) }}
.mf-modal, .mf-modal-overlay {
position: absolute !important;
}
.mf-modal {
z-index: 1023;
left: 50%;
&.mf-animate {
.modalAnimate();
}
&.mf-modal-top {
top: 10px;
.modalTranslate(-50%, 0);
&.mf-animate {
.modalAnimateName(mf-modal-slide-down-top);
}
}
&.mf-modal-middle {
top: 50%;
.modalTranslate(-50%, -50%);
&.mf-animate {
.modalAnimateName(mf-modal-slide-down-middle);
}
}
&.mf-modal-bottom {
bottom: 10px;
.modalTranslate(-50%, 0);
&.mf-animate {
.modalAnimateName(mf-modal-slide-up-bottom);
}
}
}
.mf-modal-overlay {
z-index: 1022;
}
{% endif %}
|