theme fix
@ -10,7 +10,7 @@ $view->setMeta([
|
||||
]);
|
||||
?>
|
||||
<!-- Page Header-->
|
||||
<header class="masthead" style="background-image: url('<?= $resources ?>/assets/img/about-bg.jpg')">
|
||||
<header class="masthead" style="background-image: url('<?= $resources ?>/assets/img/about-bg.jpeg')">
|
||||
<div class="container position-relative px-4 px-lg-5">
|
||||
<div class="row gx-4 gx-lg-5 justify-content-center">
|
||||
<div class="col-md-10 col-lg-8 col-xl-7">
|
||||
|
@ -10,7 +10,7 @@ $view->setMeta([
|
||||
]);
|
||||
?>
|
||||
<!-- Page Header-->
|
||||
<header class="masthead" style="background-image: url('<?= $resources ?>/assets/img/home-bg.jpg')">
|
||||
<header class="masthead" style="background-image: url('<?= $resources ?>/assets/img/home-bg.jpeg')">
|
||||
<div class="container position-relative px-4 px-lg-5">
|
||||
<div class="row gx-4 gx-lg-5 justify-content-center">
|
||||
<div class="col-md-10 col-lg-8 col-xl-7">
|
||||
|
BIN
resources/themes/default/assets/img/about-bg.jpeg
Normal file
After Width: | Height: | Size: 356 KiB |
Before Width: | Height: | Size: 2.4 MiB |
Before Width: | Height: | Size: 489 KiB |
BIN
resources/themes/default/assets/img/home-bg.jpeg
Normal file
After Width: | Height: | Size: 74 KiB |
Before Width: | Height: | Size: 984 KiB |
Before Width: | Height: | Size: 1.7 MiB |
Before Width: | Height: | Size: 112 KiB |
0
resources/themes/default/css/bootstrap.min.css
vendored
Normal file
0
resources/themes/default/css/bootstrap/_media.css
Normal file
0
resources/themes/default/css/style.css
Normal file
0
resources/themes/default/images/bg_1.jpg
Normal file
0
resources/themes/default/images/logo.jpg
Normal file
0
resources/themes/default/js/bootstrap.min.js
vendored
Normal file
0
resources/themes/default/js/jquery.min.js
vendored
Normal file
30
resources/themes/default/js/main.js
Normal file
@ -0,0 +1,30 @@
|
||||
(function ($) {
|
||||
|
||||
"use strict";
|
||||
|
||||
var fullHeight = function () {
|
||||
|
||||
$('.js-fullheight').css('height', $(window).height());
|
||||
$(window).resize(function () {
|
||||
$('.js-fullheight').css('height', $(window).height());
|
||||
});
|
||||
|
||||
};
|
||||
fullHeight();
|
||||
|
||||
$('#sidebarCollapse').on('click', function () {
|
||||
$('#sidebar').toggleClass('active');
|
||||
});
|
||||
|
||||
})(jQuery);
|
||||
|
||||
window.addEventListener("load", function () {
|
||||
let closeBtn = document.querySelectorAll(".closeAlertBtn");
|
||||
closeBtn.forEach((item) => {
|
||||
item.addEventListener("click", closeAlert);
|
||||
});
|
||||
});
|
||||
|
||||
function closeAlert() {
|
||||
this.parentNode.setAttribute("style", "display: none;")
|
||||
}
|