Created
December 22, 2017 03:47
-
-
Save Jul10l1r4/852831a06b3fc3bce87b78c1138c21bd to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
*{ | |
}/* Onde fica o artigo*/ | |
#conteudo>p{ | |
text-align:justify; | |
margin:20px; | |
font-size: 20px; | |
font-family: medium-content-sans-serif-font,-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen,Ubuntu,Cantarell,"Open Sans","Helvetica Neue", sans-serif; | |
color:#333; | |
font-weight: lighter; | |
line-height: 1.58 | |
} | |
#conteudo>h1,#conteudo>h2{ | |
font-weight: 600; | |
line-height: 1.58; | |
font-family: -apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,"Helvetica Neue",sans-serif; | |
} | |
#conteudo>h1{ | |
font-size:40px; | |
border-bottom:2px solid #EAECEF; | |
} | |
#conteudo>h2{ | |
color:#333; | |
}/* As imagens tem que ser detro dessa tag <figure> */ | |
figure{ | |
}/* E essa outra tem que ficar dentro da tag figure, aqui dentro fica a descrição da imagem(importantissimo)*/ | |
figcaption{ | |
color:#666; | |
font-size:14px; | |
font-weight: bold; | |
} | |
/* Tag code, onde fica o código */ | |
code{ | |
font-family: 'Source Code Pro', monospace; | |
border-radius:3px; | |
background:#ddd; | |
padding:5px; | |
color: #bf616a; | |
}/* Blockquote, para falar frase ou citações */ | |
blockquote{ | |
border-left:3px solid #000; | |
margin-left:10%; | |
padding:0 15px; | |
font-weight:400; | |
font-style: italic; | |
text-align:left; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment