Larson Texts, Luminate, Blacklane

This commit is contained in:
Norm Rasmussen
2023-10-19 17:38:36 -04:00
parent fb416055b5
commit cc0d192db2
12 changed files with 490 additions and 142 deletions

View File

@ -515,7 +515,8 @@ a.np-card {
}
/* MODAL POPUP */
.first-time-user-popup {
.first-time-user-popup,
.survey-popup {
position: fixed;
top: 0;
right: 0;
@ -530,15 +531,17 @@ a.np-card {
pointer-events: none;
transition: 0.25s ease-out;
}
.first-time-user-popup.is-active {
.first-time-user-popup.is-active,
.survey-popup.is-active {
visibility: visible;
opacity: 1;
pointer-events: auto;
}
.first-time-user-popup-container {
.first-time-user-popup-container,
.survey-popup-container {
width: 100%;
max-width: 600px;
max-width: 650px;
margin: auto;
transform: translateY(-1em) scale(0.95);
background-color: white;
@ -546,7 +549,8 @@ a.np-card {
border-radius: 8px;
}
.first-time-user-popup.is-active .first-time-user-popup-container {
.first-time-user-popup.is-active .first-time-user-popup-container,
.survey-popup.is-active .survey-popup-cotnainer {
transform: translateY(0) scale(1);
}
@ -560,6 +564,7 @@ a.np-card {
.modal-links {
display: flex;
justify-content:center;s
}
.modal-links a {
@ -592,12 +597,19 @@ a.np-card {
color: #13014a;
}
.first-time-user-popup-content {
.first-time-user-popup-content,
.survey-popup-content {
padding: 32px 16px;
}
.survey-popup-content,
.modal-survey {
height:100%;
}
@media (min-width: 768px) {
.first-time-user-popup-content {
.first-time-user-popup-content,
.survey-popup-content {
padding: 32px;
}