Advertisement
Guest User

Untitled

a guest
Apr 23rd, 2018
144
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.77 KB | None | 0 0
  1. body {
  2. font-family: "Crimson Text", "Times New Roman", serif;
  3. background-color: #F2FFFC;
  4. font-size: 120%;
  5. line-height: 1.5;
  6. }
  7.  
  8. h1, h2 {
  9. font-family: "Open Sans Condensed", "Arial", sans-serif;
  10. }
  11.  
  12. .titulo-principal {
  13. text-align: center;
  14. background-color: #851944;
  15. color: #FFF;
  16. padding: 25px;
  17. border-bottom: 10px solid black;
  18. font-size: 60px;
  19. text-transform: uppercase;
  20. }
  21.  
  22. p {
  23. text-align: justify;
  24. margin: 20px 0;
  25. }
  26.  
  27. .citacao-bio {
  28. background-color: #D9E5E3;
  29. border: 10px solid #C2CCCA;
  30. width: 250px;
  31. box-sizing: border-box;
  32. margin: 20px 40px;
  33. }
  34.  
  35. .navegacao-site {
  36. text-align: center;
  37. background-color: #3C1D3D;
  38. color: #F2FFFC;
  39. }
  40.  
  41. .rodape-pagina {
  42. background-color: #000;
  43. color: #F2FFFC;
  44. }
  45.  
  46. main a {
  47. color: #851944;
  48. }
  49.  
  50. .navegacao-site a {
  51. color: inherit;
  52. font-family: "Open Sans Condensed", sans-serif;
  53. }
  54.  
  55. .citacao-bio, .navegacao-site, .rodape-pagina {
  56. padding: 20px;
  57. }
  58.  
  59. .texto {
  60. width: 720px;
  61. margin: auto;
  62. padding: 30px 0;
  63. }
  64.  
  65. .navegacao-site h1 {
  66. font-size: 30px;
  67. margin-bottom: 25px;
  68. }
  69.  
  70. strong {
  71. font-weight: bold;
  72. }
  73.  
  74. em {
  75. font-style: italic;
  76. }
  77.  
  78. .subtitulo-texto {
  79. font-size: 30px;
  80. }
  81.  
  82. .icones-redes-sociais li {
  83. display: inline-block;
  84. }
  85.  
  86. .artigo {
  87. padding-bottom: 30px;
  88. border-bottom: 1px solid #ccc;
  89. margin-bottom: 20px;
  90. }
  91.  
  92. .leia-mais {
  93. padding: 8px;
  94. margin: 16px;
  95. display: block;
  96. font-size: 24px;
  97. text-align: center;
  98. background-color: #E6E7E8;
  99. }
  100.  
  101. nav a {
  102. text-transform: lowercase;
  103. }
  104.  
  105. .icones-redes-sociais a {
  106. width: 40px;
  107. height: 40px;
  108. display: block;
  109. text-indent: -99999px;
  110. }
  111.  
  112. .github {
  113. background-image: url(github.png);
  114. }
  115.  
  116. .twitter {
  117. background-image: url(twitter.png);
  118. }
  119.  
  120. .linkedin {
  121. background-image: url(linkedin.png);
  122. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement