-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
desafio 1 - ajustes nos links do footer
- Loading branch information
1 parent
be01a98
commit f2f9adb
Showing
10 changed files
with
68 additions
and
22 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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 |
---|---|---|
|
@@ -29,7 +29,7 @@ | |
} | ||
|
||
&:hover { | ||
color: #674ee2; | ||
color: #f56f54; | ||
} | ||
} | ||
} | ||
|
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
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
14 changes: 14 additions & 0 deletions
14
desafio_04/src/Components/ContainerImageHero/ContainerImageHero.css
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,14 @@ | ||
.containerImageHero { | ||
display: none; | ||
} | ||
|
||
@media (width >= 1450px) { | ||
.containerImageHero { | ||
display: block; | ||
|
||
img { | ||
width: 50rem; | ||
|
||
} | ||
} | ||
} |
12 changes: 12 additions & 0 deletions
12
desafio_04/src/Components/ContainerImageHero/ContainerImageHero.jsx
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,12 @@ | ||
import './ContainerImageHero.css' | ||
import imageHero from '../../assets/hero.svg'; | ||
|
||
const ContainerImageHero = () => { | ||
return ( | ||
<div className='containerImageHero'> | ||
<img src={imageHero} alt="" /> | ||
</div> | ||
) | ||
} | ||
|
||
export default ContainerImageHero |
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
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
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,19 @@ | ||
@import '../../App.css'; | ||
|
||
.footer { | ||
margin-top: 10rem; | ||
padding: 5rem 3rem; | ||
text-align: center; | ||
background-color: var(--gray-30); | ||
|
||
.footer-paragraph { | ||
font-size: 1.4rem; | ||
line-height: 2.4rem; | ||
font-weight: 600; | ||
} | ||
|
||
a { | ||
color: var(--primary-color); | ||
transition: all .3s; | ||
} | ||
} |
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,15 @@ | ||
import './Footer.css' | ||
|
||
const Footer = () => { | ||
return ( | ||
<footer className='footer'> | ||
<p className="footer-paragraph"> | ||
Desafio da comunidade | ||
<a href="https://github.com/iuricode/desafios-frontend"> CodeLab</a>. <br /> Desenvolvido por | ||
<a href="https://github.com/gabrielalencs"> Gabriel de Alencar</a>. | ||
</p> | ||
</footer> | ||
) | ||
} | ||
|
||
export default Footer |