added more preview pages and more templates

This commit is contained in:
2026-07-21 07:10:03 -05:00
parent c6119ffdf5
commit b19fdee30d
3726 changed files with 651487 additions and 6169 deletions
@@ -1313,7 +1313,7 @@ p {
outline: none;
}
.btn-primary {
background-color: #F52A85;
background-color: #C2185B;
color: #fff;
-webkit-box-shadow: 0px 1px 2px 0px rgba(16, 24, 40, 0.0509803922);
box-shadow: 0px 1px 2px 0px rgba(16, 24, 40, 0.0509803922);
@@ -1740,6 +1740,9 @@ p {
.flyoutMenu .flyout__inner .menu__header-top .closest__btn {
cursor: pointer;
width: auto;
background: transparent;
border: none;
padding: 0;
}
.flyoutMenu .flyout__inner .menu__header-top .brand__logo {
max-width: 150px;
@@ -3346,7 +3349,7 @@ p {
.footer__widget p {
font-family: "Inter", sans-serif;
font-size: 16px;
color: #677a85;
color: #4A5568;
line-height: 24px;
margin-bottom: 0;
}
@@ -3380,8 +3383,8 @@ p {
}
.footer__widget .social__icon ul li a {
font-size: 16px;
color: #F52A85;
background: rgba(245, 42, 133, 0.1);
color: #C2185B;
background: rgba(194, 24, 91, 0.12);
height: 40px;
width: 40px;
-webkit-box-align: center;
@@ -3439,10 +3442,9 @@ p {
.footer__widget .widget__list li a {
font-family: "Inter", sans-serif;
font-size: 16px;
color: #677a85;
color: #4A5568;
line-height: 24px;
font-weight: 400;
color: #677a85;
display: -webkit-box;
display: -ms-flexbox;
display: flex;
@@ -3558,7 +3560,7 @@ p {
font-size: 16px;
font-weight: 400;
line-height: 24px;
color: #677a85;
color: #4A5568;
text-transform: capitalize;
margin-bottom: 0;
}
@@ -3567,7 +3569,7 @@ p {
font-size: 16px;
font-weight: 400;
line-height: 24px;
color: #677a85;
color: #4A5568;
display: inline-block;
position: relative;
margin-left: 16px;
@@ -3600,4 +3602,19 @@ p {
/*********************************
/* Footer Section End
*********************************/
*********************************/
.preview-concept-banner a {
color: #93c5fd;
margin-left: 6px;
text-decoration: underline;
text-underline-offset: 2px;
}
.footer__bottom .aiml-credit {
margin-top: 8px;
}
.footer__bottom .aiml-credit a {
color: #4A5568;
}
@@ -89,20 +89,25 @@
*********************************/
$(".toggler__btn").on("click", function (event) {
event.preventDefault();
$(".flyoutMenu").toggleClass("active");
var isOpen = $(".flyoutMenu").toggleClass("active").hasClass("active");
$(this).attr("aria-expanded", isOpen ? "true" : "false");
$(this).attr("aria-label", isOpen ? "Close menu" : "Open menu");
});
$(".closest__btn").on("click", function (event) {
event.preventDefault();
$(".flyoutMenu").removeClass("active");
$(".toggler__btn").attr("aria-expanded", "false").attr("aria-label", "Open menu");
});
$('.flyout-main__menu li a').on('click', function () {
$('.flyoutMenu').removeClass('active');
$(".toggler__btn").attr("aria-expanded", "false").attr("aria-label", "Open menu");
});
$(document).on("click", function (e) {
if ($(e.target).closest(".flyout__inner").length === 0 && $(e.target).closest(".toggler__btn").length === 0) {
$(".flyoutMenu").removeClass("active");
$(".toggler__btn").attr("aria-expanded", "false").attr("aria-label", "Open menu");
}
});