Guest User

Untitled

a guest
Oct 16th, 2018
78
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.20 KB | None | 0 0
  1. /* Ejemplo de HTML+CSS */
  2.  
  3. body
  4. {
  5. padding-left: 11em;
  6. font-family: Georgia, "Times New Roman", Times, serif; /* Representa a esta fuente */
  7. color: purple;
  8. background: #d8da3d;
  9. }
  10.  
  11. ul.navbar
  12. {
  13. list-style-type: none;
  14. position: absolute;
  15. top: 2em;
  16. left: 1em;
  17. width: 9em;
  18. margin: 0;
  19. padding: 0;
  20. }
  21.  
  22. h1
  23. {
  24. font-family: Helvetica, Geneva, Arial, SunSans-Regular, sans-serif;
  25. }
  26.  
  27. ul.navbar li
  28. {
  29. border-right: 1em solid black;
  30. margin: 0.5em 0;
  31. padding: 0.3em;
  32. background: white;
  33. }
  34.  
  35. ul.navbar a
  36. {
  37. text-decoration: none;
  38. }
  39.  
  40. a: link
  41. {
  42. color: blue;
  43. }
  44.  
  45. a: visited
  46. {
  47. color: purple;
  48. }
  49.  
  50. address
  51. {
  52. margin-top: 1em;
  53. padding-top: 1em;
  54. border-top: thin dotted;
  55. }
  56.  
  57.  
  58. pre {
  59. background: black;
  60. color: white;
  61. padding: 1ex;
  62. font-size: 1.3em
  63. }
  64.  
  65. pre:before{
  66. content: ">>> ";
  67. color: gray;
  68. }
  69.  
  70.  
  71.  
  72.  
  73.  
  74.  
  75.  
  76.  
  77.  
  78.  
  79.  
  80.  
  81.  
  82.  
  83.  
  84.  
  85.  
  86.  
  87.  
  88.  
  89.  
  90.  
  91.  
  92.  
  93. /* Reset de tablas */
  94. table
  95. {
  96. width:100%;
  97. border-collapse:collapse;
  98. }
  99.  
  100. table td, table th
  101. {
  102. border:1px solid #98bf21;
  103. padding:3px 7px 2px 7px;
  104. }
  105. table th
  106. {
  107. text-align:left;
  108. padding-top:5px;
  109. padding-bottom:4px;
  110. background-color:#A7C942;
  111. color:#fff;
  112. }
  113.  
  114. table tr td{
  115. background: rgba(167, 201, 66, 0.7);
  116. color: black;
  117. }
  118.  
  119. table tr.alt td
  120. {
  121. background-color:#EAF2D3;
  122. }
  123.  
  124. .s {
  125. outline: 1px solid red; }
Add Comment
Please, Sign In to add comment