Notes for Larson Texts/Big ideas, added the ghost notes templates. Updated luminate's templates

This commit is contained in:
Norm Rasmussen
2023-08-24 17:06:08 -04:00
parent 63c33b5f17
commit 332b99d3ec
57 changed files with 560 additions and 253 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,13 +531,15 @@ 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;
margin: auto;
@ -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;
}