Create a full-screen popup


.md-modal__backdrop {
background:
-webkit-gradient(
linear,
left top, left bottom,
from(rgba(0, 0, 0, 0.6)),
to(rgba(0, 0, 0, 0.6))
),
url('[YOUR-URL-IMAGE]');
background:
-o-linear-gradient(
rgba(0, 0, 0, 0.6),
rgba(0, 0, 0, 0.6)
),
url('[YOUR-URL-IMAGE]');
background:
linear-gradient(
rgba(0, 0, 0, 0.6),
rgba(0, 0, 0, 0.6)
),
url('[YOUR-URL-IMAGE]');
background-size: cover;
background-repeat: no-repeat;
background-position: center;
}
.md-modal__content {
background: transparent !important;
-webkit-box-shadow: none !important;
box-shadow: none !important;
}
.md-modal__header__title {
-webkit-box-pack: center;
-ms-flex-pack: center;
justify-content: center
}
.md-modal__bodyContent p {
text-align: center !important;
}Last updated
Was this helpful?