inital commit

This commit is contained in:
2026-01-01 15:25:19 +05:30
commit f0ae49465a
36361 changed files with 4894111 additions and 0 deletions

View File

@@ -0,0 +1,36 @@
/**=====================
Footer CSS Start
==========================**/
.footer {
background-color: $footer_bg_color;
box-shadow: $footer_box_shadow;
padding: 15px;
position: fixed;
bottom: 0;
right: 0;
width: calc(100vw - 280px);
transition: 0.5s;
z-index: 2;
@media (max-width: 1199px) {
width: calc(100vw - 260px);
}
@include mq-max(lg) {
width: 100%;
right: 0;
}
&.footer-dark {
background-color: $footer_dark_color;
p {
color: $white;
}
}
}
.footer-fix {
width: calc(100% - 280px);
position: fixed;
}