🔨」 fix: fixed some things.

This commit is contained in:
2025-10-12 19:49:23 +02:00
parent 8968dfc9ad
commit 52838c6f71
41 changed files with 65242 additions and 70 deletions

Binary file not shown.

After

Width:  |  Height:  |  Size: 10 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 8.5 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 12 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 9.8 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 11 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 994 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.1 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 14 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 26 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 21 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.9 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.9 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 38 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.9 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 75 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 58 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.1 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.7 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.3 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 6.1 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 123 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 116 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 174 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 77 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 173 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 218 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 180 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 274 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 172 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 327 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 182 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 319 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 251 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 180 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 180 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 249 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 307 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.3 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 469 KiB

65242
src/lescrampte/css/styles.css Normal file

File diff suppressed because one or more lines are too long

View File

@ -39,18 +39,6 @@
</style>
<body>
<script>
if ('serviceWorker' in navigator) {
navigator.serviceWorker.register('./js/service-worker.js')
.then(function(registration) {
console.log('Service Worker registered successfully:', registration);
})
.catch(function(error) {
console.log('Service Worker registration failed:', error);
});
}
</script>
<div class="container-item scale-team-container">
<div class="row mt-4">
<div class="scale-section-infos col-sm-12 scale-div">
@ -89,62 +77,4 @@
</div>
<br><br><br>
</body>
<script>
function showCPPModal(event) {
event.preventDefault();
var modal = document.getElementById("CPPModal");
modal.style.display = "block";
modal.animate([
{ opacity: 0 },
{ opacity: 1 }
], {
duration: 100,
});
var span = document.getElementsByClassName("close")[0];
span.onclick = function () {
modal.animate([
{ opacity: 1 },
{ opacity: 0 }
], {
duration: 100,
}).onfinish = function () {
modal.style.display = "none";
}
}
window.onclick = function (event) {
if (event.target == modal) {
modal.animate([
{ opacity: 1 },
{ opacity: 0 }
], {
duration: 100,
}).onfinish = function () {
modal.style.display = "none";
}
}
}
document.onkeydown = function (evt) {
evt = evt || window.event;
if (evt.key === "Escape" || evt.key === "Esc") {
modal.animate([
{ opacity: 1 },
{ opacity: 0 }
], {
duration: 100,
}).onfinish = function () {
modal.style.display = "none";
}
}
};
}
</script>
<script src="js/script.js"></script>
</html>