-
Notifications
You must be signed in to change notification settings - Fork 115
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Easy Peasy Recipes (by Anna, Gabriella and Gitte) #49
Open
gittebe
wants to merge
42
commits into
Technigo:main
Choose a base branch
from
gittebe:main
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from all commits
Commits
Show all changes
42 commits
Select commit
Hold shift + click to select a range
a03f701
Co-authored-by: Gabriella Iofe <[email protected]>
gittebe 3154b02
Co-authored-by: Anna Hansen <[email protected]>
gittebe 57beb9c
Co-authored-by: Anna Hansen <[email protected]>
gittebe 281595c
- added CSS style
gittebe e9a1bea
- worked on the CSS, changing the selection part
gittebe 61fd8a5
- worked on CSS: buttons
gittebe fed68fa
Co-authored-by: Anna Hansen <[email protected]>
gittebe e7209d2
- added functions of filter and sorting buttons
gittebe 258333c
- added cooking time buttons
gittebe 4d6fa85
- worked on js: changed the cuisine buttons to make a drop-down menu
gittebe 92911f6
created a random button in html/js
gabster94 bf6c714
made the ingredients list an actual list
gabster94 7aca4ed
-
gittebe e16bf3b
Merge branch 'main' of https://github.com/gittebe/project-library
gittebe b0c878b
null became a number(time)
gabster94 e79514e
Merge branch 'main' of https://github.com/gittebe/project-library
gabster94 193f8ff
styled the cards
gabster94 535aaaa
styled the random button div and corrected/added time to the cards. a…
gabster94 95723a1
-
gabster94 7bdfc91
- added code for the dropdown
gittebe 3afddcb
Merge branch 'main' of https://github.com/gittebe/project-library
gittebe e154a6d
- added back the const for ingredientsList
gittebe 9fa0be4
- changed css of #filterDropdown
gittebe 601f6f2
recreated the lists in a way where is integrated in innerHTML to ind…
gabster94 6719471
- deleted unessesary code in the CSS
gittebe dd17777
- added @media in CSS
gittebe fcb53ea
- changed card width
gittebe ee3fcdb
Update style.css buttons
Anna2024WebDev 4586375
Update pull_request_template.md
Anna2024WebDev 8cb4d1c
Update pull_request_template.md
Anna2024WebDev bd59cd1
Update README.md
Anna2024WebDev cd30a32
Update README.md
Anna2024WebDev 925cb3b
Update pull_request_template.md
Anna2024WebDev c20cbd6
Update pull_request_template.md
Anna2024WebDev ddbea26
Update pull_request_template.md
Anna2024WebDev 36cce9a
Update pull_request_template.md
Anna2024WebDev 78685d4
- added to the README
gittebe 7309dd6
Update pull_request_template.md
gittebe c0e4ee5
Update README.md
gittebe 3dec5e4
added a missing closing tag (for<section>)
gabster94 f5d8cbf
Removed default browser settings buttons/dropdown
Anna2024WebDev a0f44b2
Update style.css_cleaned up button code
Anna2024WebDev File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
{ | ||
"liveServer.settings.port": 5501 | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,8 @@ | ||
# project-library | ||
# project-library | ||
|
||
This week our project was to build a library using arrays as well as DOM manupulations, functions, variables and event handling. Our recipe library page offers options for filtering, sorting, and randomly selecting items. | ||
|
||
This project was the first team project as part of the Technigo bootcamp. Working together on the same repository has been a new important experience for us. | ||
We decided on the project together and build a first HTML and CSS together. We worked on the Javascript codes first idividually and explained and discussed them later on. | ||
|
||
Link: https://library-recipes.netlify.app |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,68 @@ | ||
<!DOCTYPE html> | ||
<html lang="en"> | ||
|
||
<head> | ||
<meta charset="UTF-8"> | ||
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | ||
<link rel="stylesheet" href="style.css"> | ||
<!-- Don't forget to change the title and connect the CSS file --> | ||
<title>Project Library</title> | ||
<title>Easy Peasy Recipes</title> | ||
<link | ||
href="https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap" | ||
rel="stylesheet"> | ||
</head> | ||
|
||
<body> | ||
<h1>Project Library</h1> | ||
<!-- Don't forget to connect the JavaScript file --> | ||
<header> | ||
<h1>Easy Peasy Recipes</h1> | ||
</header> | ||
<main> | ||
|
||
<div class="categories" id="categories"> | ||
|
||
|
||
<div class="dropdownContainer"> | ||
<h2>Type of Kitchen</h2> | ||
<select id="filterDropdown"> | ||
<option value="all" id="all">All</option> | ||
<option value="italian">Italian</option> | ||
<option value="asian">Asian</option> | ||
<option value="american">American</option> | ||
</select> | ||
</div> | ||
|
||
<div class="time-container"> | ||
<h2 class="">Time</h2> | ||
<form for="time"> | ||
<button type="button" class="shortest" id="shortest">Shortest</button> | ||
<button type="button" class="longest" id="longest">Longest</button> | ||
</form> | ||
</div> | ||
|
||
<div class="sort-container"> | ||
<h2>Sort A-Z</h2> | ||
<form for="sort"> | ||
<button type="button" class="ascending" id="ascendingButton">Ascending</button> | ||
<button type="button" class="decending" id="descendingButton">Decending</button> | ||
</form> | ||
</div> | ||
|
||
</div> | ||
|
||
<div class="random-container"> | ||
<h2>What's for dinner tonight?</h2> | ||
<p>Can't decide? Let us help you pick your dinner.</p> | ||
<button type="button" class="random-button" id="random-button">Surprise me! | ||
</button> | ||
</div> | ||
|
||
<section id="card-container"> | ||
</section> | ||
|
||
</main> | ||
|
||
<!-- Link to connect the JavaScript file --> | ||
<script src="./script.js"></script> | ||
</body> | ||
|
||
</html> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,9 @@ | ||
## Netlify link | ||
Add your Netlify link here. | ||
PS. Don't forget to add it in your readme as well. | ||
https://library-recipes.netlify.app | ||
|
||
## Collaborators | ||
Add your collaborators here. Write their GitHub usernames in square brackets. If there's more than one, separate them with a comma, like this: | ||
[github-username-1, github-username-2] | ||
Gitte Beckmann, | ||
Anna Hansen, | ||
Gabriella Iofe | ||
|
||
[gittebe, Anna2024WebDev, gabster94] |
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
⭐