Skip to content

Commit

Permalink
alteracao
Browse files Browse the repository at this point in the history
  • Loading branch information
amndalsr committed Mar 6, 2024
1 parent dab3b86 commit d8063f8
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 7 deletions.
8 changes: 5 additions & 3 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -15,9 +15,11 @@

<body>

<div class="logo-alura">
<img src="/assets/logo-alura.png" alt="logo da Alura">
</div>
<header class="cabecalho__logo">
<div class="logo-alura">
<img src="/assets/logo-alura.png" alt="logo da Alura">
</div>
</header>

<main class="conteudo__principal">
<section class="conteudo__principal__secao">
Expand Down
4 changes: 2 additions & 2 deletions styles/media-queries.css
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
@media only screen and (max-width: 768px) {
@media only screen and (max-width: 1200px) {

body {
flex-direction: column;
Expand Down Expand Up @@ -39,7 +39,7 @@
.texto-destino, .botao-copiar {
width: 100%;
}

}

@media only screen and (max-width: 375px) {
Expand Down
8 changes: 6 additions & 2 deletions styles/style.css
Original file line number Diff line number Diff line change
Expand Up @@ -14,11 +14,12 @@ body {
display: flex;
flex-direction: column;
justify-content: space-between;
align-items: center;
height: 100vh;
box-sizing: border-box;
background-color: var(--cor-primaria);
margin: auto;
max-width: 100%;
max-width: 1920px;
margin: auto;
}

Expand All @@ -36,10 +37,13 @@ body::-webkit-scrollbar-thumb {
border: 3px solid var(--cor-primaria);
}

.cabecalho__logo {
width: 30px;
}

.logo-alura img {
padding: 2.5rem 0 0 0;
cursor: pointer;
position: fixed;
}

.conteudo__principal {
Expand Down

0 comments on commit d8063f8

Please sign in to comment.