Solucionado (ver solução)
Solucionado
(ver solução)
3
respostas

Dúvida no Ex. 4 da Aula 12 - Desafios finais

Olá, Terminado o projeto do Blog e Biografia, notei que os icones das redes sociais não ficam centralizados dentro da caixa roxa. Tentei alguns comando sem sucesso. Segue o código css para analise

main h1{
    font-size: 60px;
    background: #640b33;
    color: #f6f5f2;
    text-align: center;
    font-family: Open Sans, sans-serif;
    padding:30px;
    margin: 0;
    border-bottom: 10px solid black;
    text-transform: uppercase;

}
h2{
    font-size: 30px;
    font-family: Open Sans, sans-serif; 
    clear: both;
    padding-bottom: 20px;
    line-height: 20px;
 }
nav{
    background: #3C1D3D;
    color: #F2FFFC;
    padding: 20px;
}
.rodape {
    background: #000000;
    color: #F2FFFC;
    padding: 20px;
}
main a{
    color: #851944;
}

body{
    line-height: 20px;
    background-color: #F2FFFC;

}
p{
    margin: 20px 0;
}
aside h1{
    font-size: 30px;
    margin-bottom: 25px;
}
main div{
    padding:  30px 0;
    width:;
    margin-left: 250px;
    margin-right: 250px;
    text-align: justify;
    padding-bottom: 80px;
}
em{
    font-style: italic;
}
strong{
    font-weight: bold;
}
.icones-sociais li{
    display: inline-block;
    text-align: center 
}

.leia-mais{
    padding: 10px;
    margin: 16px;
    display: inline-block;
    font-size: 24px;
    text-align: center;
    background-color: #E6E7E8;
}
.icones-sociais a{
    width: 40px;
    height: 40px;
    display: block;
    font-size: 0;
}
.github{
    background-image: url(../_imagens/github.png);
}
.twitter{
    background-image: url(../_imagens/twitter.png);
}
.linkedIn{
    background-image: url(../_imagens/linkedin.png);
}
img{
    float: right;
    position: absolute;
    top: 0px;
    right: 0px;
}
aside{
    float: right;
    clear: right;
    width: 20%;
    position: relative;
    top: 310px;
} 
main{
    float: left;
    width: 80%;
}
img, aside{

    box-sizing: border-box;
    border-bottom: 10px solid black;
    border-left: 10px solid black;
}
footer{
    clear: both;
    position: fixed;
    bottom: 0;
    width: 100%;
}
h1{
    text-align: center;
    font-family: Open Sans, sans-serif;
}
3 respostas

Tania posta seu HTML para mim ver como ta.

Tenta adicionando a seguinte regra em seu css:

aside {
    text-align: center;
]

Espero ter ajudado

solução!

Deu certo Matheus, obrigada

De nada Tania, sempre que precisar não deixe de criar suas dúvidas.