texto.css 2.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899
  1. *{
  2. text-rendering:geometricPrecision;
  3. }
  4. body{/* ____ Configuração para a animação*/
  5. scroll-behavior: smooth;
  6. }/* Onde fica o artigo*/
  7. .emoj{/* Font mozilla ❤ */
  8. font-family:"EmojiOne Mozilla";
  9. }
  10. #conteudo>p{
  11. text-align:justify;
  12. margin:20px;
  13. font-size: 20px;
  14. font-family: medium-content-sans-serif-font,-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen,Ubuntu,Cantarell,"Open Sans","Helvetica Neue", sans-serif;
  15. color:#333;
  16. font-weight: normal;
  17. line-height: 1.58
  18. }
  19. #conteudo>h1,#conteudo>h2{
  20. font-weight: 600;
  21. line-height: 1.58;
  22. font-family: -apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,"Helvetica Neue",sans-serif;
  23. }
  24. #conteudo>h1{
  25. font-size:40px;
  26. border-bottom:2px solid #EAECEF;
  27. }
  28. #conteudo>h2{
  29. color:#333;
  30. }/* Essa opção é para paragrafos, muitas vezes os paragrafos ficam feio em telas grandes... */
  31. .centro{
  32. text-align:center;
  33. }/* As imagens tem que ser detro dessa tag <figure> */
  34. figure{
  35. }/* E essa outra tem que ficar dentro da tag figure, aqui dentro fica a descrição da imagem(importantissimo)*/
  36. figure>img{
  37. min-width:50px;
  38. max-width:100%;
  39. }
  40. figcaption{
  41. color:#666;
  42. font-size:14px;
  43. font-weight: bold;
  44. }
  45. /* Tag code, onde fica o código */
  46. code{
  47. font-family: 'Source Code Pro', monospace;
  48. border-radius:3px;
  49. background:#ddd;
  50. padding:5px;
  51. color: #bf616a;
  52. }/* Blockquote, para falar frase ou citações */
  53. blockquote{
  54. border-left:3px solid #000;
  55. margin-left:10%;
  56. padding:0 15px;
  57. font-weight:400;
  58. font-style: italic;
  59. text-align:left;
  60. }
  61. hr{
  62. height:0px;
  63. margin-top:52px;
  64. margin-bottom:42px;
  65. border:0;
  66. text-align:center;
  67. font-weight:bold;
  68. font-size:30px;
  69. }/* aqueles três pontinhos lekais . . . */
  70. hr:before{
  71. content: '...';
  72. display: inline-block;
  73. margin-left: .6em;
  74. letter-spacing: .6em;
  75. color: rgba(0,0,0,.68);
  76. position: relative;
  77. top: -30px;
  78. }
  79. pre{
  80. text-align:left;
  81. color: #bf616a;
  82. border-radius:3px;
  83. background:#eee;
  84. font-family: 'Source Code Pro', monospace;
  85. display:block;
  86. position:relative;
  87. }
  88. .distaque-branco{
  89. background:rgba(255,255,255,.4)
  90. }
  91. .distaque-preto{
  92. background:rgba(0,0,0,.1)
  93. }
  94. .italic{
  95. font-style:italic;
  96. }