Skip to content
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

Add Responsiveness #29

Merged
merged 14 commits into from
Mar 10, 2022
10 changes: 10 additions & 0 deletions MIT.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
## Copyright 2021, [Mnemba Chambuya]
Copy link
Owner

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I think my name should also be here, I guess you forgot 😄

Copy link
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

😄 yes, most definitely.

Copy link
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Done


###### Please delete this line and the next one
###### APP TYPE can be a webpage/website, a web app, a software and so on

Permission is hereby granted, free of charge, to any person obtaining a copy of this [APP TYPE] and associated documentation files, to deal in the [APP TYPE] without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the [APP TYPE], and to permit persons to whom the [APP TYPE] is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the [APP TYPE].

THE [APP TYPE] IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE [APP TYPE] OR THE USE OR OTHER DEALINGS IN THE [APP TYPE].
64 changes: 63 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1 +1,63 @@
# JavaScript-Capstone
# JavaScript-Capstone

> The app lists different foods from different areas in the word with opions from people worldwide.

## Built With

- JavaScript, HTML, CSS

## Live Demo (if available)
Copy link
Owner

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

we can Remove the "(if available)", because we have made sure the live link is available already. saying (if available) is making it uncertain that it might not be there, what do you think 😄


[Live Demo Link](https://harlexkhal.github.io/Foodipy/)

## Getting Started

**This is an example of how you may give instructions on setting up your project locally.**

### Setup

1. git clone https://github.com/harlexkhal/Foodipy.git
2. cd Foodipy
3. npm install
4. npm start to serve into local 8080 port

### Install

1. git clone https://github.com/harlexkhal/Foodipy.git
2. cd Foodipy
3. npm install
4. npm start to serve into local 8080 port

### Deployment

https://harlexkhal.github.io/Foodipy/

## Authors

👤 **Mnemba Chambuya**

- GitHub: [@mnekx](https://github.com/mnekx)
- Twitter: [@MnembaChambuya](https://twitter.com/MnembaChambuya)
- LinkedIn: [mnemba-chambuya](https://linkedin.com/in/mnemba-chambuya)

👤 **Alexander Oguzie-Ibeh**

- GitHub: [@mnekx](https://github.com/harlexkhal)
- Twitter: [@MnembaChambuya](https://twitter.com/harlexkhal)
- LinkedIn: [mnemba-chambuya](https://www.linkedin.com/in/alexander-oguzie-ibeh-776814164/)

## Screenshot ![see](./src/assets/images/screenshot.png?raw=true 'Title')

## 🤝 Contributing

Contributions, issues, and feature requests are welcome!

Feel free to check the [issues page](../../issues/).

## Show your support

Give a ⭐️ if you like this project!

## 📝 License

This project is [MIT](./MIT.md) licensed.
Binary file added src/assets/images/screenshot.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
1 change: 1 addition & 0 deletions src/index.css
Original file line number Diff line number Diff line change
Expand Up @@ -141,3 +141,4 @@ footer {
}

@import url('./utility.css');
@import url('./mobile.css');
24 changes: 24 additions & 0 deletions src/mobile.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
@media screen and (max-width: 960px) {
.items {
grid-template-columns: repeat(2, 1fr);
}

.d-flex {
flex-direction: column;
}

.container {
max-width: 75%;
}

.navbar {
margin-top: 2rem;
align-items: center;
}
}

@media screen and (max-width: 768px) {
.items {
grid-template-columns: repeat(1, 1fr);
}
}