Advertisement
pauloilarde

site-alura-css

Jun 22nd, 2017
133
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 0.86 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. h1, h2 {
  8.     font-family: "Open Sans Condensed", "Arial", sans-serif;
  9. }
  10. main h1 {
  11.     text-align: center;
  12.     background-color: #851944;
  13.     color: #FFF;
  14.     padding: 25px;
  15.     border-bottom: 10px solid black;
  16. }
  17. p {
  18.     text-align: justify;
  19. }
  20. blockquote {
  21.     background-color: #D9E5E3;
  22.     border: 10px solid #C2CCCA;
  23.     width: 250px;
  24.     box-sizing: border-box;
  25. }
  26. aside {
  27.     background-color: #3C1D3D;
  28.     color: #F2FFFC;
  29. }
  30. footer {
  31.     background-color: #000;
  32.     color: #F2FFFC;
  33. }
  34. nav a {
  35.     color: #F2FFFC;
  36. }
  37. main a {
  38.     color: #851944;
  39. }
  40. aside a {
  41.     color: inherit;
  42.     font-family: "Open Sans Condensed", sans-serif;
  43. }
  44. blockquote, aside, footer {
  45.     padding: 20px;
  46. }
  47. main div {
  48.     width: 720px;
  49.     margin: auto;
  50. }
  51. aside {
  52.     text-align: center;
  53. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement