Skip to content

Commit

Permalink
Update darkambientef1.css
Browse files Browse the repository at this point in the history
  • Loading branch information
Html-Czllt authored Jul 26, 2024
1 parent 4fa5146 commit b12fa7c
Showing 1 changed file with 17 additions and 3 deletions.
20 changes: 17 additions & 3 deletions darkambientef1.css
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@ body {
}

header {
background-color: #2c2c2c; /* Fundo escuro */
color: #f5f5f5; /* Texto claro */
background-color: #2c2c2c; /* Fundo de elementos secundários */
color: #f5f5f5; /* Texto secundário e cabeçalhos */
padding: 20px;
text-align: center;
}
Expand All @@ -17,16 +17,30 @@ header {
display: flex;
justify-content: space-between;
align-items: center;
flex-wrap: wrap; /* Adiciona flex-wrap para permitir que os itens quebrem linha */
}

.logo img {
border-radius: 50%;
box-shadow: #002fffad 0px 0px 20px;
max-width: 100px;
width: 100px;
height: auto;
margin-left: 20%;
}

/* Media query para telas menores */
@media (max-width: 768px) {
.header-container {
flex-direction: column; /* Altera a direção do flex para coluna em telas menores */
align-items: center; /* Centraliza os itens na coluna */
}

.logo img {
margin-left: 0; /* Remove a margem à esquerda */
margin-bottom: 20px; /* Adiciona margem inferior para separar a logo dos botões */
}
}

nav {
text-align: center;
}
Expand Down

0 comments on commit b12fa7c

Please sign in to comment.