Skip to content

Commit

Permalink
Update
Browse files Browse the repository at this point in the history
  • Loading branch information
Koala3353 committed Mar 20, 2024
1 parent 8b94b32 commit 0ac81f3
Show file tree
Hide file tree
Showing 21 changed files with 3,118 additions and 1,625 deletions.
19 changes: 19 additions & 0 deletions .github/workflows/qodana_code_quality.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
name: Qodana
on:
workflow_dispatch:
pull_request:
push:
branches:
- master

jobs:
qodana:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 0
- name: 'Qodana Scan'
uses: JetBrains/[email protected]
env:
QODANA_TOKEN: ${{ secrets.QODANA_TOKEN }}
268 changes: 133 additions & 135 deletions 404.html

Large diffs are not rendered by default.

1 change: 1 addition & 0 deletions assets/bootstrap/css/bootstrap.min.css
Original file line number Diff line number Diff line change
Expand Up @@ -3770,6 +3770,7 @@ fieldset:disabled .btn {
pointer-events: none;
cursor: default;
}

.nav-tabs {
--bs-nav-tabs-border-width: var(--bs-border-width);
--bs-nav-tabs-border-color: var(--bs-border-color);
Expand Down
70 changes: 67 additions & 3 deletions assets/css/bs-theme-overrides.css
Original file line number Diff line number Diff line change
Expand Up @@ -35,9 +35,74 @@
--bs-border-color: #dee2e6;
}

.navbar-nav .nav-link:hover {
color: #FED103 !important;
}


.btn-light:hover {
background-color: #FED103 !important;
color: #00416C!important;
}

.btn-light:hover .learn-more-div {
color: #00416C!important;
}

.link-light:hover {
color: #FED103 !important;
}

.footer-email {
background-color: #00416C !important;
text-decoration: none!important;
}

.bi-facebook:hover {
color: #FED103;
}

.bi-twitter:hover {
color: #FED103;
}

.bi-cart-fill:hover {
color: #FFFFFF;
}

.bi-cart-fill {
color: #FFFFFF!important;
}

.cart-svg:hover .bi-cart-fill {
color: #FFFFFF;
}

.bi-instagram:hover {
color: #FED103;
}

.footer-email:hover {
color: #FED103!important;
}

.footer-links:hover {
color: #FED103 !important;
}

.btn-primary:hover {
color: #00416C!important;
}

.btn-light {
background-color: #E63E30 !important;
}



.btn-primary {
--bs-btn-color: #ffffff;
--bs-btn-bg: #E63E30;
--bs-btn-bg: #E63E30 !important;
--bs-btn-border-color: #E63E30;
--bs-btn-hover-color: #fff;
--bs-btn-hover-bg: #FED103!important;
Expand Down Expand Up @@ -219,5 +284,4 @@
--bs-btn-disabled-color: #212529;
--bs-btn-disabled-bg: transparent;
--bs-btn-disabled-border-color: #212529;
}

}
23 changes: 0 additions & 23 deletions assets/js/Carousel-Multi-Image--ISA--carousel-multi.js

This file was deleted.

4 changes: 2 additions & 2 deletions assets/js/vanilla-zoom.js
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@
});

// Zoom image on mouse enter.
zoomedImage.addEventListener('mouseenter', function(e) {
zoomedImage.addEventListener('mouseenter', function() {
this.style.backgroundSize = "250%";
}, false);

Expand All @@ -73,7 +73,7 @@


// When leaving the container zoom out the image back to normal size.
zoomedImage.addEventListener('mouseleave', function(e) {
zoomedImage.addEventListener('mouseleave', function() {
this.style.backgroundSize = "contain";
this.style.backgroundPosition = "left center";
}, false);
Expand Down
Loading

0 comments on commit 0ac81f3

Please sign in to comment.