Thank you for purchasing our project and being our valued customer. We hope you are happy with your purchase. Feel free to contact us at any time. We have a dedicated team to provide you with the best support. If you have any issues, please contact the Support Help Desk at https://support.spruko.com/.
If you love our Template Design Please don't forget to rate it. Thank you so much!
Applist - Responsive Bootstrap apps softwares directory and multipurpose Marketplace HTML Template, with these template formats, it's very easy to create a presence and grab someone's attention around the web page because the template is built by using HTML5, CSS3, Bootstrap 5 framework and with Sass. So please before you start working with the template take a quick look on the documentation so that you can easily built your website.
If you love our Template Design Please don't forget to rate it. Thank you so much! 😊
Applist- It is a modern, and creative listing template using modern and minimal design. It is fully flexible user-friendly and responsive. Applist listing template is powered with HTML 5, SASS, & Bootstrap 5 which looks great on Desktops, Tablets, and Mobile Devices. This Template Includes 70+ HTML Pages & 10+ Plugins more UI elements . No Need to do hard work for this template customization. We have already designed it and you can easily design your website just how you like it. Advanced Form-Elements like Date pickers, form elements are included. This template using Bootstrap 5 framework. This admin template is fully 100% Premium Admin Templates quality. This template designed for using HTML5,CSS3,Jquery. After Purchasing this template you will get All HTML files,CSS, Scss and JS Files.
It has super clean flat user interface admin Backend design, easy customizable components and widgets.The Template comes with an awesome unique design also we ensure you can easily design admin template.
It is a fully responsive layout for all type of devices. Works on all major web browsers, Desktop, iPhone, iPad, Tablet and all other smart phone devices
Once you Purchase Applist - Responsive Bootstrap apps softwares directory and multipurpose Marketplace HTML Template, you will be able to get free download of all future updates.
Horizonal Listing | Dark Theme Ready | RTL Ready |
70+ HTML Pages | 10 Home Pages | Easy to Customize |
Bootstrap 5 Responsive Framework | 24 * 7 Professional Company Support | 10+ Plugins |
Gallery | Select2 | File upload |
Data Tables | Error Page | Under Construction Page |
More Widgets | Neat, clean and simple design | W3C Validated |
style.css is the main CSS file located in assets/css folder of the package. Whole CSS file is well indexed with topic and its related code.
*,
::after,
::before {
box-sizing: border-box;
}
html {
line-height: 1.15;
-webkit-text-size-adjust: 100%;
-ms-text-size-adjust: 100%;
-ms-overflow-style: scrollbar;
-webkit-tap-highlight-color: transparent;
font-size: 16px;
height: 100%;
}
body {
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
-webkit-tap-highlight-color: transparent;
-webkit-text-size-adjust: none;
-ms-touch-action: manipulation;
touch-action: manipulation;
-webkit-font-feature-settings: "liga"0;
font-feature-settings: "liga"0;
height: 100%;
overflow-y: scroll;
position: relative;
margin: 0;
font-size: 0.84375rem;
font-weight: 400;
line-height: 1.5;
color: #2a2740;
text-align: start;
background-color: #f1f0f9;
font-family: "Poppins", sans-serif;
}
@-ms-viewport {
width: device-width;
}
article,
aside,
dialog,
figcaption,
figure,
footer,
header,
hgroup,
main,
nav,
section {
display: block;
}
[tabindex="-1"]:focus {
outline: 0 !important;
}
hr {
box-sizing: content-box;
height: 0;
overflow: visible;
margin-block-start: 2rem;
margin-block-end: 2rem;
margin-block-start: 1rem;
margin-block-end: 1rem;
border: 0;
border-block-start: 1px solid #e3e3e4;
}
custom.js is the main javascript file having all the js code. File is located in assets/js/ folder. This file code is also well formatted and section in different respective function names.
Along with this chart library based js code and dashboard based js code are added in separate files for ease of use of user.
(function($) {
"use strict";
// ______________ Cover-image
$(".cover-image").each(function() {
var attr = $(this).attr('data-bs-image-src');
if (typeof attr !== typeof undefined && attr !== false) {
$(this).css('background', 'url(' + attr + ') center center');
}
});
// ______________ Global Loader
$(window).on("load", function(e) {
$("#global-loader").fadeOut("slow");
})
// ______________Active Class
$(document).ready(function() {
$(".horizontalMenu-list li a").each(function() {
var pageUrl = window.location.href.split(/[?#]/)[0];
if (this.href == pageUrl) {
$(this).addClass("active");
$(this).parent().addClass("active"); // add active to li of the current link
$(this).parent().parent().prev().addClass("active"); // add active class to an anchor
$(this).parent().parent().prev().click(); // click the item to make it drop
}
});
});
// ______________ Back to Top
$(window).on("scroll", function(e) {
if ($(this).scrollTop() > 0) {
$('#back-to-top').fadeIn('slow');
} else {
$('#back-to-top').fadeOut('slow');
}
});
$("#back-to-top").on("click", function(e) {
$("html, body").animate({
scrollTop: 0
}, 600);
return false;
});