gitignore
continuous-integration/drone/push Build is passing Details

ServeurDeTest
nathan boileau 2 years ago
parent 49aead805d
commit 860eff62ca

2
.gitignore vendored

@ -15,3 +15,5 @@
/node_modules/
/.idea
*.db

@ -19,5 +19,5 @@ const fox = document.querySelector(".moving-fox");
window.addEventListener("scroll", () => {
const scrollValue = window.scrollY - 700;
fox.style.top = `${scrollValue / 1}px`;
fox.style.opacity = `${window.scrollY / 700}`;
fox.style.opacity = `${window.scrollY / 800}`;
});

@ -23,7 +23,7 @@
<link rel="stylesheet" href="../CSS/Presentation.css">
</head>
<body>
<nav class="navbar navbar-expand-lg navbar-dark fixed-top">
<nav class="navbar navbar-expand-lg navbar-dark fixed-top" style="border-bottom: 1px solid #fff;">
<div class="container-fluid mx-0">
<div class="nav-item nav-link">
<a class="navbar-brand" href="index.php?action=goToHome">Home</a>

Loading…
Cancel
Save