CSS
html{
font-size: 120%;
}
body {
font-family: "Crimson Text", "Times New Roman", serif;
background-color: #F2FFFC;
line-height: 1.5;
}
h1, h2, .subtitulo-principal {
font-family: "Open Sans Condensed", "Arial", sans-serif;
}
h1{
text-transform: uppercase;
text-shadow: 5px, 5px #000; /*Emite sombra no elemento*/
}
.titulo-principal {
text-align: center;
background-color: #851944;
color: #FFF;
padding: 1.25rem;
border-bottom: .5rem solid black;
font-size: 300%;
}
p {
text-align: justify;
margin: 1rem 0;
}
.navegacao-site {
text-align: center;
background-color: #3C1D3D;
color: #F2FFFC;
}
.rodape-pagina {
background-image: radial-gradient(ellipse at left bottom,
rgba(60, 29, 61, 0.8),
rgba(60, 29, 61, 0.8) 65%,
black 65%,
black 70%,
transparent 70%,
transparent);
width: 100%;
background-size: 25% 100%;
background-repeat: no-repeat;
clear: both;
position: relative;
bottom: 0;
left: 0;
width: 100%;
box-sizing: border-box;
}
main a {
color: #851944;
}
.navegacao-site a {
color: inherit;
font-family: "Open Sans Condensed", sans-serif;
}
blockquote, .navegacao-site, .rodape-pagina {
padding: 1rem;
}
.texto {
width: 720px;
margin: auto;
padding: 1.5rem 0;
}
.navegacao-site h1 {
font-size: 1.5rem;
margin-bottom: 1.25rem;
}
strong {
font-weight: bold;
}
em {
font-style: italic;
}
.subtitulo-texto {
font-size: 1.5rem;
clear: both;
}
.icones-redes-sociais li {
display: inline-block;
}
nav a {
text-transform: lowercase;
}
.icones-redes-sociais a {
width: 2rem;
height: 2rem;
display: block;
text-indent: -99999px;
}
.icones-redes-sociais a{
position: relative;
}
.icones-redes-sociais a:hover::after,
.icones-redes-sociais a:focus::after{
content: attr(data-tooltip);
position: absolute;
top: 100%;
right: 0;
text-indent: 0;
width: 300%;
background: black;
font-size: .75em;
}
.github {
background-image: url(imagens/github.png);
}
.twitter {
background-image: url(imagens/twitter.png);
}
.linkedin {
background-image: url(imagens/linkedin.png);
}
main {
float: left;
width: 85%;
padding-bottom: 4rem;
}
.minha-foto, .navegacao-site {
float: right;
box-sizing: border-box;
border-left: 0.5rem solid black;
border-bottom: 0.5rem solid black;
}
.minha-foto {
position: absolute;
top: 0;
right: 0;
}
.navegacao-site {
width: 15%;
position: relative;
top: 16.1rem;
}
main a:hover,
main a:focus,
footer a:hover,
footer a:focus{
color: red;
}
.navegacao-site a:hover,
.navegacao-site a:focus{
text-shadow: 0 0 2px pink;
}