Advertisement
Guest User

Untitled

a guest
Oct 22nd, 2019
94
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.56 KB | None | 0 0
  1. /* Comentario
  2. multilínea en css */
  3.  
  4. /* Reseteamos el navegador */
  5. *{
  6. font-family: "Calibri", "Arial";
  7. font-size: 1em;
  8. margin: 0;
  9. padding: 0;
  10. }
  11.  
  12. /*Elementos html*/
  13. body{
  14. border: 1px solid #00a3ff;
  15. margin: 0 auto;
  16. padding: 0 2em;
  17. width: 80%;
  18. }
  19.  
  20. h1, h2, h3, h4, h5, h6{
  21. color: #165d85;
  22. font-family: "Gabriola";
  23. }
  24.  
  25. h1{
  26. font-size: 2em;
  27. }
  28.  
  29. h2{
  30. font-size: 1.8em;
  31. }
  32.  
  33. h3{
  34. font-size: 1.6em;
  35. }
  36.  
  37. h4{
  38. font-size: 1.4em;
  39. }
  40.  
  41. h5{
  42. font-size: 1.2em;
  43. }
  44.  
  45. h6{
  46. font-size: 1em;
  47. }
  48.  
  49. p{
  50. margin-bottom: .5em;
  51. text-align: justify;
  52. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement