Skip to content

Commit

Permalink
nothing to commit
Browse files Browse the repository at this point in the history
  • Loading branch information
Fabscg committed Nov 25, 2023
1 parent b106e00 commit f17db7b
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 16 deletions.
2 changes: 1 addition & 1 deletion .firebase/hosting.cHVibGlj.cache
Original file line number Diff line number Diff line change
Expand Up @@ -12,4 +12,4 @@ assets/img/pizza.jpg,1700433650807,ee9fc3dda0fbbeda217d7b842d07814d014ddcbb9e192
assets/img/specials-background.jpeg,1700433650808,253c2e2ed0c7b8677663d74af84bbe59fff8864ab7110aca18784231930ddf6a
assets/img/splash.png,1700433650808,c1a44dfb9da2f771b569b6adfc3e67286d1cfd9fb62e4793241ad96123d65779
assets/img/tomato.png,1700433650808,d2cced917bbe44711ebe858aca91a07a752baed8b3785dfdd6ecd25477144cc5
index.html,1700948083828,ccaa2801621ba1eb73ac2de17005ab007be8cb12d347da98933fe4fdbc7c44fa
index.html,1700948267114,df1693ceb46600b80de5db55626f701e0de3483abf10521d6fb56b7b2d5144ae
5 changes: 3 additions & 2 deletions public/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,8 @@
<link
href="https://fonts.googleapis.com/css2?family=Allura&family=Josefin+Sans&family=Montserrat:wght@300&family=Parisienne&display=swap"
rel="stylesheet">
<link rel="stylesheet" href="/public/style.css">
<link rel="stylesheet" href="/public/specials.html">
<link rel="stylesheet" href="style.css">
<link rel="stylesheet" href="specials.html">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.6.0/jquery.min.js"></script>
</head>

Expand Down Expand Up @@ -427,6 +427,7 @@ <h2>NOTICE</h2>
</footer>

</body>
<script src="./index.js"></script>
<script src="https://www.gstatic.com/firebasejs/10.6.0/firebase-app-compat.js"></script>
<!-- <script src="http://ajax.googleapis.com/ajax/libs/jquery/1.7.1/jquery.min.js" type="module"></script> -->
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/css/bootstrap.min.css"></script>
Expand Down
4 changes: 0 additions & 4 deletions public/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -38,10 +38,6 @@ document.addEventListener("DOMContentLoaded", function () {
// remove padding top from body
document.body.style.paddingTop = '0';
}
window.onscroll = () => {
const nav = document.querySelector('#navbar_top');
if(this.scrollY <= 500) nav.className = ''; else nav.className = 'scroll';
};
});
});

6 changes: 4 additions & 2 deletions public/specials.html
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
<link
href="https://fonts.googleapis.com/css2?family=Allura&family=Josefin+Sans&family=Montserrat:wght@300&family=Parisienne&display=swap"
rel="stylesheet">
<link rel="stylesheet" href="/public/style.css">
<link rel="stylesheet" href="style.css">


<title>Specials</title>
Expand Down Expand Up @@ -94,6 +94,8 @@ <h1>Specials</h1>


</body>
<script src="/public/index.js"></script>
<script src="./index.js"></script>
<script src="https://www.gstatic.com/firebasejs/10.6.0/firebase-app-compat.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/css/bootstrap.min.css"></script>

</html>
9 changes: 2 additions & 7 deletions public/style.css
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ p {

nav,
.intro {
background: url("/public/assets/img/Lanterna-restaurant.png");
background: url("assets/img/pasta-and-flour.jpg");
background-size: cover;
background-repeat: no-repeat;
height: auto;
Expand Down Expand Up @@ -412,7 +412,7 @@ footer {
}

#specials {
background: url("/public/assets/img/specials-background.jpeg");
background: url("assets/img/specials-background.jpeg");
background-position: center;
background-size: 100% 100%;
background-repeat: no-repeat;
Expand Down Expand Up @@ -528,11 +528,6 @@ footer {
display: none;
}

.intro {
background-size: cover;
width: 100%;
}

.about-img {
width: 100%;
}
Expand Down

0 comments on commit f17db7b

Please sign in to comment.