Skip to content

Commit

Permalink
commit
Browse files Browse the repository at this point in the history
  • Loading branch information
tanatelha committed Apr 27, 2024
1 parent 3b2495e commit c700a66
Showing 1 changed file with 65 additions and 0 deletions.
65 changes: 65 additions & 0 deletions reportagens-style.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,65 @@
* {
margin: 0;
padding: 0;
box-sizing: border-box; /*incluir o preenchimento e a borda dentro da largura/altura total do elemento*/
text-decoration: none;
}

/* Definindo cores como variáveis CSS */
:root {
--cor-amarelo: #FEC700;
--cor-laranja: #FF7F1F;
--cor-roxo: #B00A8C;
--cor-rosa: #C92349;
}

#amarelo{background-color: var(--cor-amarelo);}
#laranja{background-color: var(--cor-laranja);}
#roxo{background-color: var(--cor-roxo);}
#rosa{background-color: var(--cor-rosa);}

/*CSS do HTML*/

html{
background-color: white;
font-family: Georgia, 'Times New Roman', Times, serif;
}


/*CSS do Header*/
header{
position: relative;
}

img.imagem-header {
width: 300px;
margin: 15px;

}

div.header-conteudo{
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
margin: 1rem auto;
}

.titulo{
font-weight: 600;
font-size: 1.6rem;
border-bottom: 2px solid black;
}

.intertitulo-header {
color: black;
margin: 1rem;
padding: 0.5rem;
font-style: italic;
font-size: 1.0rem;
margin-bottom: 5rem;
width: 40%;
line-height: 1.4rem;
text-align: center;
color: #000;
}

0 comments on commit c700a66

Please sign in to comment.