add files

switched the account for this Repo(From Kuntzschi911 to jxnomaly)
This commit is contained in:
Jannick Kuntzsch
2025-10-25 20:35:15 +02:00
parent d739c12222
commit 75a990452b
54 changed files with 28803 additions and 0 deletions
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
+12
View File
@@ -0,0 +1,12 @@
@font-face {
font-family: 'FontAwesome';
src: url(../../assets/fonts/FontAwesome-acb05451c32ed1d18e16db6ae8eaa5cf.eot?v=4.7.0) format('embedded-opentype'),
url(../../assets/fonts/FontAwesome-acb05451c32ed1d18e16db6ae8eaa5cf.eot) format('embedded-opentype'),
url(../../assets/fonts/FontAwesome-b123861803368ce33b2adf8923829c08.woff2?v=4.7.0) format('woff2'),
url(../../assets/fonts/FontAwesome-8d02a38a091c0352b1288f29a9c48568.woff?v=4.7.0) format('woff'),
url(../../assets/fonts/FontAwesome-e0077912ec61a9bbbe9b193bb5faceda.ttf?v=4.7.0) format('truetype'),
url(../../assets/fonts/FontAwesome-99f36027bc2a463bab9e1fd256e3fa00.svg?v=4.7.0) format('svg');
font-weight: normal;
font-style: normal;
font-display: auto;
}
+10
View File
@@ -0,0 +1,10 @@
@font-face {
font-family: 'Material Icons';
src: url(../../assets/fonts/Material%20Icons-1cfb692462a36eb4a70ed43e46a0d9b9.eot) format('embedded-opentype'),
url(../../assets/fonts/Material%20Icons-4558092288b12c6bee0a4d4766dbfb15.woff2) format('woff2'),
url(../../assets/fonts/Material%20Icons-bb1246ea21660f997ac7884b72de1838.woff) format('woff'),
url(../../assets/fonts/Material%20Icons-7ac041db584d5a156025be0d86c532d5.ttf) format('truetype');
font-weight: 400;
font-style: normal;
font-display: auto;
}
+1742
View File
File diff suppressed because it is too large Load Diff
File diff suppressed because it is too large Load Diff
File diff suppressed because it is too large Load Diff
+18
View File
@@ -0,0 +1,18 @@
.material-icons {
font-family: 'Material Icons';
font-weight: 400;
font-style: normal;
font-size: 24px;
display: inline-block;
line-height: 1;
text-transform: none;
letter-spacing: normal;
word-wrap: normal;
white-space: nowrap;
direction: ltr;
-webkit-font-smoothing: antialiased;
text-rendering: optimizeLegibility;
-moz-osx-font-smoothing: grayscale;
font-feature-settings: 'liga';
}
+3
View File
@@ -0,0 +1,3 @@
h1 {
}
File diff suppressed because it is too large Load Diff

After

Width:  |  Height:  |  Size: 434 KiB

Binary file not shown.
Binary file not shown.
File diff suppressed because it is too large Load Diff

After

Width:  |  Height:  |  Size: 275 KiB

Binary file not shown.
Binary file not shown.
Binary file not shown.
File diff suppressed because one or more lines are too long
Binary file not shown.
File diff suppressed because it is too large Load Diff

After

Width:  |  Height:  |  Size: 434 KiB

Binary file not shown.
Binary file not shown.
Binary file not shown.
+1
View File
@@ -0,0 +1 @@
@font-face{font-family:'Material Icons';font-style:normal;font-weight:400;src:url(MaterialIcons-Regular.eot);src:local('Material Icons'),local('MaterialIcons-Regular'),url(MaterialIcons-Regular.woff2) format('woff2'),url(MaterialIcons-Regular.woff) format('woff'),url(MaterialIcons-Regular.ttf) format('truetype')}.material-icons{font-family:'Material Icons';font-weight:400;font-style:normal;font-size:24px;display:inline-block;line-height:1;text-transform:none;letter-spacing:normal;word-wrap:normal;white-space:nowrap;direction:ltr;-webkit-font-smoothing:antialiased;text-rendering:optimizeLegibility;-moz-osx-font-smoothing:grayscale;font-feature-settings:'liga'}
Binary file not shown.

After

Width:  |  Height:  |  Size: 116 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 143 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 39 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 39 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 66 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 221 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 87 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 46 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 47 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 127 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 31 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 26 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 50 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 62 KiB

+6
View File
File diff suppressed because one or more lines are too long
+19
View File
@@ -0,0 +1,19 @@
if (window.innerWidth < 768) {
[].slice.call(document.querySelectorAll('[data-bss-disabled-mobile]')).forEach(function (elem) {
elem.classList.remove('animated');
elem.removeAttribute('data-bss-hover-animate');
elem.removeAttribute('data-aos');
elem.removeAttribute('data-bss-parallax-bg');
elem.removeAttribute('data-bss-scroll-zoom');
});
}
document.addEventListener('DOMContentLoaded', function() {
var hoverAnimationTriggerList = [].slice.call(document.querySelectorAll('[data-bss-hover-animate]'));
var hoverAnimationList = hoverAnimationTriggerList.forEach(function (hoverAnimationEl) {
hoverAnimationEl.addEventListener('mouseenter', function(e){ e.target.classList.add('animated', e.target.dataset.bssHoverAnimate) });
hoverAnimationEl.addEventListener('mouseleave', function(e){ e.target.classList.remove('animated', e.target.dataset.bssHoverAnimate) });
});
}, false);