Skip to content

Commit

Permalink
Fixing rest of the siides
Browse files Browse the repository at this point in the history
  • Loading branch information
izabela-marcinkowska committed May 23, 2023
1 parent e549762 commit 5be8189
Show file tree
Hide file tree
Showing 12 changed files with 104 additions and 0 deletions.
Binary file modified .DS_Store
Binary file not shown.
Binary file modified Project Plan/Projektplan - Utförande.docx
Binary file not shown.
Binary file added Restaurantproject.zip
Binary file not shown.
4 changes: 4 additions & 0 deletions book-a-table.html
Original file line number Diff line number Diff line change
Expand Up @@ -155,6 +155,9 @@ <h1 class="footer-header">Find us:</h1>
</div>
<p class="copyright">Copyright by Izabela Marcinkowska 2023</p>
</div>
<a href="#" class="scroll-to-top">
<ion-icon name="arrow-up"></ion-icon>
</a>
</footer>
<script
type="module"
Expand All @@ -164,5 +167,6 @@ <h1 class="footer-header">Find us:</h1>
nomodule
src="https://unpkg.com/[email protected]/dist/ionicons/ionicons.js"
></script>
<script src="js/main.js"></script>
</body>
</html>
4 changes: 4 additions & 0 deletions carte.html
Original file line number Diff line number Diff line change
Expand Up @@ -309,6 +309,9 @@ <h1 class="footer-header">Find us:</h1>
</div>
<p class="copyright">Copyright by Izabela Marcinkowska 2023</p>
</div>
<a href="#" class="scroll-to-top">
<ion-icon name="arrow-up"></ion-icon>
</a>
</footer>
<script
type="module"
Expand All @@ -318,5 +321,6 @@ <h1 class="footer-header">Find us:</h1>
nomodule
src="https://unpkg.com/[email protected]/dist/ionicons/ionicons.js"
></script>
<script src="js/main.js"></script>
</body>
</html>
4 changes: 4 additions & 0 deletions find-us.html
Original file line number Diff line number Diff line change
Expand Up @@ -146,6 +146,9 @@ <h1 class="footer-header">Find us:</h1>
</div>
<p class="copyright">Copyright by Izabela Marcinkowska 2023</p>
</div>
<a href="#" class="scroll-to-top">
<ion-icon name="arrow-up"></ion-icon>
</a>
</footer>
<script
type="module"
Expand All @@ -155,5 +158,6 @@ <h1 class="footer-header">Find us:</h1>
nomodule
src="https://unpkg.com/[email protected]/dist/ionicons/ionicons.js"
></script>
<script src="js/main.js"></script>
</body>
</html>
Binary file modified img/.DS_Store
Binary file not shown.
4 changes: 4 additions & 0 deletions lunch.html
Original file line number Diff line number Diff line change
Expand Up @@ -321,6 +321,9 @@ <h1 class="footer-header">Find us:</h1>
</div>
<p class="copyright">Copyright by Izabela Marcinkowska 2023</p>
</div>
<a href="#" class="scroll-to-top">
<ion-icon name="arrow-up"></ion-icon>
</a>
</footer>
<script
type="module"
Expand All @@ -330,5 +333,6 @@ <h1 class="footer-header">Find us:</h1>
nomodule
src="https://unpkg.com/[email protected]/dist/ionicons/ionicons.js"
></script>
<script src="js/main.js"></script>
</body>
</html>
22 changes: 22 additions & 0 deletions styles/book-style.css
Original file line number Diff line number Diff line change
Expand Up @@ -267,3 +267,25 @@ img {
color: #9e7137;
border: 2px solid #9e7137;
}

.scroll-to-top {
background-color: #161008;
color: #f6f6f6;
position: fixed;
bottom: 30px;
right: 30px;
z-index: 100;
text-align: center;
transition: all 0.5s ease;
font-size: 24px;
line-height: 56px;
width: 48px;
height: 48px;
opacity: 0;
transform: translateY(100px);
}

.show-scroll-btn {
opacity: 1;
transform: translateY(0);
}
22 changes: 22 additions & 0 deletions styles/carte-style.css
Original file line number Diff line number Diff line change
Expand Up @@ -279,3 +279,25 @@ img {
color: #9e7137;
border: 2px solid #9e7137;
}

.scroll-to-top {
background-color: #161008;
color: #f6f6f6;
position: fixed;
bottom: 30px;
right: 30px;
z-index: 100;
text-align: center;
transition: all 0.5s ease;
font-size: 24px;
line-height: 56px;
width: 48px;
height: 48px;
opacity: 0;
transform: translateY(100px);
}

.show-scroll-btn {
opacity: 1;
transform: translateY(0);
}
22 changes: 22 additions & 0 deletions styles/find-us-style.css
Original file line number Diff line number Diff line change
Expand Up @@ -296,3 +296,25 @@ img {
color: #9e7137;
border: 2px solid #9e7137;
}

.scroll-to-top {
background-color: #161008;
color: #f6f6f6;
position: fixed;
bottom: 30px;
right: 30px;
z-index: 100;
text-align: center;
transition: all 0.5s ease;
font-size: 24px;
line-height: 56px;
width: 48px;
height: 48px;
opacity: 0;
transform: translateY(100px);
}

.show-scroll-btn {
opacity: 1;
transform: translateY(0);
}
22 changes: 22 additions & 0 deletions styles/lunch-style.css
Original file line number Diff line number Diff line change
Expand Up @@ -280,3 +280,25 @@ img {
color: #9e7137;
border: 2px solid #9e7137;
}

.scroll-to-top {
background-color: #161008;
color: #f6f6f6;
position: fixed;
bottom: 30px;
right: 30px;
z-index: 100;
text-align: center;
transition: all 0.5s ease;
font-size: 24px;
line-height: 56px;
width: 48px;
height: 48px;
opacity: 0;
transform: translateY(100px);
}

.show-scroll-btn {
opacity: 1;
transform: translateY(0);
}

0 comments on commit 5be8189

Please sign in to comment.