Skip to content

Commit

Permalink
Resolução do desafio 3
Browse files Browse the repository at this point in the history
  • Loading branch information
T4RUM committed Jun 19, 2024
1 parent 529330f commit 765bf26
Showing 1 changed file with 32 additions and 0 deletions.
32 changes: 32 additions & 0 deletions 1906/exercicio-02/styles.css
Original file line number Diff line number Diff line change
Expand Up @@ -61,3 +61,35 @@ footer {
width: 100%;
bottom: 0;
}
/*Adicionando Responsividade*/
@media (max-width: 480px) {
header {
background-color: #333;
color: white;
padding: 1rem;
}
header h1 {
margin: 0;
font-size: 26px;
}
nav ul {
display: flex;
list-style: none;
gap: 8px;
font-size: 16px;
flex-direction: column;
}
h2 {
font-size: 20px;
}
p {
font-size: 12px;
}
.images {
display: flex;
flex-direction: column;
}
footer p {
font-size: 16px;
}
}

0 comments on commit 765bf26

Please sign in to comment.