Skip to content

Commit

Permalink
Merge pull request #6 from miguelrisquelme/development
Browse files Browse the repository at this point in the history
Development
  • Loading branch information
miguelitodev authored Jun 2, 2021
2 parents e6ef8c9 + 5b9700a commit 31ee94d
Show file tree
Hide file tree
Showing 7 changed files with 44 additions and 1 deletion.
17 changes: 16 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,18 @@ Hello this is a project made to apply the knowledge obtained in the courses of G

<img src=".github/print.png">

<br>
<br><br>
<br>

## Contribute

if you wanna contribute in this project just follow these steps:

1. Make a fork of project
2. Do your changes
3. Open a Pull Request

<br>
<br>

Expand All @@ -23,7 +35,7 @@ Hello this is a project made to apply the knowledge obtained in the courses of G
- 🟥 Side Menu
- 🟥 Animation on Restaurant and Market options
- 🟥 Modal over button "Entrar"
- 🟥 Hover opacity in some links
- Hover opacity in some links
- ✅ Transition size image on options

<br>
Expand All @@ -43,4 +55,7 @@ Hello this is a project made to apply the knowledge obtained in the courses of G
- <a href="https://web.fe.up.pt/~ee96100/projecto/Tabela%20ascii.htm" target="_blank">Tabela ASCII</a>
- <a href="https://cursos.alura.com.br/" target="_blank">Alura</a>

<br>
<br>

Developed by <a href="https://bit.ly/miguelrisquelme"> Miguel Riquelme </a>with ❤
4 changes: 4 additions & 0 deletions css/food-links.css
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,10 @@
border: none;
}

.food-link article > a > button:hover {
background-color: var(--hover-red);
}

.food-link-img {
position: absolute;
bottom: 25px;
Expand Down
4 changes: 4 additions & 0 deletions css/food-lover.css
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,10 @@
border: none;
}

.food-lover article > a > button:hover {
background-color: var(--hover-red);
}

.food-lover img {
width: 100%;
}
Expand Down
8 changes: 8 additions & 0 deletions css/footer.css
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,14 @@ footer {
padding: 100px 0px;
}

footer a {
color: var(--text);
}

footer a:hover {
color: var(--dark-gray);
}

.cities {
display: flex;
flex-direction: column;
Expand Down
4 changes: 4 additions & 0 deletions css/header.css
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,10 @@ ul {
.header-menu a {
text-decoration: none;
font-family: "SulSans", sans-serif;
color: var(--text);
}

.header-menu a:hover {
color: var(--dark-gray);
}

Expand Down
4 changes: 4 additions & 0 deletions css/options.css
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,10 @@
background-color: var(--red-default);
}

.card-option:not(.card-option:hover) {
opacity: 0.9;
}

.card-option:last-child {
background-color: var(--green-market);
}
Expand Down
4 changes: 4 additions & 0 deletions css/search.css
Original file line number Diff line number Diff line change
Expand Up @@ -61,6 +61,10 @@
border: none;
}

.button-search:hover {
background-color: var(--dark-red);
}

@media screen and (max-width: 900px) {
.title-search {
width: 90%;
Expand Down

0 comments on commit 31ee94d

Please sign in to comment.