noa - Bootstrap5 Admin & Dashboard Template

Note:-

Please refer Faq's page in documentation itself for queries of customization like Colors,RTL ,Dark,Background Image styles,etc..

Dashboard
Welcome to noa – Bootstrap5 Admin & Dashboard Template
  • Updated Date: 18/July/2022
  • Author: Spruko
  • Company: Spruko Technologies Private Limited
  • Support: support@spruko.com

Thank you for purchasing our admin template. Feel free to contact us any time. We have a dedicated team to provide you the best support. If you want any queries please contact live chat or email : sprukotechnologies@gmail.com

If You Love Our Template Design Please don't forgot to rate it. Thank you so much!

Introduction
Welcome to noa – Bootstrap5 Admin & Dashboard Template

noa - Admin 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 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 forgot to rate it. Thank you so much! 😊

Template Description

noa– is a Bootstrap Admin & Dashboard template using modern and minimal design. It is fully flexible user-friendly and responsive. noa admin template is powered with HTML 5, SASS, & Bootstrap 5 which looks great on Desktops, Tablets, and Mobile Devices. This Template Includes 110+ HTML Pages & 50+ Plugins more UI elements . No Need to do hard work for this template customization. We 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 Bootstrap5 framework. This admin template is fully 100% Premium Admin Templates quality. This template designed by using HTML5,CSS3,Jquery. After Purchased 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 a 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 noa , you will be able to get free download of all future updates.

Template Features
Vertical-menu Horizontal click menu Horizontal hover menu RTL ready
110 Plus HTML Pages Bootstrap 5 Responsive Framework Well Commented Code 24 * 7 Professional Company Support
Regular Updates 50+ Plugins 5 types of Charts Select2
About us Blog File Manager Gallery
Project Pages Ecommerce Pages Settings Page Blog Details
Calendar Mail Inbox 10 Types of Icon sets File upload
Message Chat Tickets Month & Date & Year Range Pickers FormAdvanced Elements
Data Tables Lockscreen Page Error Page User Profile
Task Pages Invoice Page Advanced Pricing Tables Easy to customize
More Widgets Very Easy to Create your Own Site Neat, clean and simple design W3C Validated
CSS Structure

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.

    
		html {
			line-height: 1.15;
			-webkit-text-size-adjust: 100%;
			-ms-text-size-adjust: 100%;
			-ms-overflow-style: scrollbar;
			-webkit-tap-highlight-color: transparent;
		}

		@-ms-viewport {
			width: device-width;
		}

		article,
		aside,
		dialog,
		figcaption,
		figure,
		footer,
		header,
		hgroup,
		main,
		nav,
		section {
			display: block;
		}

		body {
			margin: 0;
			font-family: "Roboto", sans-serif;
			font-size: 0.8375rem;
			font-weight: 400;
			line-height: 1.5;
			color: #495057;
			text-align: left;
			background-color: #f7f8f9;
		}

		.number-font {
			font-weight: 600 !important;
		}

		[tabindex="-1"]:focus {
			outline: 0 !important;
		}

		hr {
			box-sizing: content-box;
			height: 0;
			overflow: visible;
		}

		p {
			margin-top: 0;
			margin-bottom: 1rem;
		}

		abbr[title],
		abbr[data-original-title] {
			text-decoration: underline;
			-webkit-text-decoration: underline dotted;
			text-decoration: underline dotted;
			cursor: help;
			border-bottom: 0;
		}

		address {
			margin-bottom: 1rem;
			font-style: normal;
			line-height: inherit;
		}

		ol,
		ul,
		dl {
			margin-top: 0;
			margin-bottom: 1rem;
		}

		ol ol,
		ul ul,
		ol ul,
		ul ol {
			margin-bottom: 0;
		}

		dt {
			font-weight: 700;
		}

		dd {
			margin-bottom: 0.5rem;
			margin-left: 0;
		}

		dfn {
			font-style: italic;
		}

		b,
		strong {
			font-weight: bolder;
		}

		small {
			font-size: 80%;
		}

		sub,
		sup {
			position: relative;
			font-size: 75%;
			line-height: 0;
			vertical-align: baseline;
		}


 
JS Structure

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";

	// ______________ PAGE LOADING
	$(window).on("load", function (e) {
		$("#global-loader").fadeOut("slow");
	})

	//Color-Theme
	$(document).on("click", "a[data-theme]", function () {
		$("head link#theme").attr("href", $(this).data("theme"));
		$(this).toggleClass('active').siblings().removeClass('active');
	});

	// FAQ Accordion
	$(document).on("click", '[data-bs-toggle="collapse"]', function () {
		$(this).toggleClass('active').siblings().removeClass('active');
	});

	// ______________Full screen
	$(document).on("click", ".full-screen-link", function toggleFullScreen() {
		$('.full-screen-link').addClass('fullscreen-button');
		if ((document.fullScreenElement !== undefined && document.fullScreenElement === null) || (document.msFullscreenElement !== undefined && document.msFullscreenElement === null) || (document.mozFullScreen !== undefined && !document.mozFullScreen) || (document.webkitIsFullScreen !== undefined && !document.webkitIsFullScreen)) {
			if (document.documentElement.requestFullScreen) {
				document.documentElement.requestFullScreen();
			} else if (document.documentElement.mozRequestFullScreen) {
				document.documentElement.mozRequestFullScreen();
			} else if (document.documentElement.webkitRequestFullScreen) {
				document.documentElement.webkitRequestFullScreen(Element.ALLOW_KEYBOARD_INPUT);
			} else if (document.documentElement.msRequestFullscreen) {
				document.documentElement.msRequestFullscreen();
			}
		} else {
			$('html').removeClass('fullscreen-button');
			if (document.cancelFullScreen) {
				document.cancelFullScreen();
			} else if (document.mozCancelFullScreen) {
				document.mozCancelFullScreen();
			} else if (document.webkitCancelFullScreen) {
				document.webkitCancelFullScreen();
			} else if (document.msExitFullscreen) {
				document.msExitFullscreen();
			}
		}
	})

	//  item notes
	$('.thumb').click(function () {
		if (!$(this).hasClass('active')) {
			$(".thumb.active").removeClass("active");
			$(this).addClass("active");
		}
	});

	// Toggle Switches
	$('.toggle').on('click', function () {
		$(this).toggleClass('on');
	})

	// ______________ BACK TO TOP BUTTON
	$(window).on("scroll", function (e) {
		if ($(this).scrollTop() > 0) {
			$('#back-to-top').fadeIn('slow');
		} else {
			$('#back-to-top').fadeOut('slow');
		}
	});