Advertisement
campos20

Untitled

Aug 31st, 2020
1,806
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 0.70 KB | None | 0 0
  1. body {
  2.     background-color: #ededed;
  3. }
  4.  
  5. h2 {
  6.     color: white;
  7.     background-color: black;
  8.     text-align: center;
  9.     font-size: 2em;
  10. }
  11.  
  12. p {
  13.     font-family: verdana;
  14.     font-size: 15px;
  15. }
  16.  
  17. span {
  18.     color: white;
  19.     background-color: red;
  20. }
  21.  
  22. #primeira-coluna {
  23.     width: 30%;
  24.     float: left;
  25. }
  26.  
  27. #segunda-coluna {
  28.     width: 70%;
  29.     margin-left: auto;
  30. }
  31.  
  32. #paragrafos {
  33.     clear: both;
  34. }
  35.  
  36. .corpo-do-texto {
  37.     font-family: serif;
  38. }
  39.  
  40. table {
  41.     width: 100%;
  42.     border-collapse: collapse;
  43. }
  44.  
  45. table, th, td {
  46.     border: 1px solid black;
  47. }
  48.  
  49. thead th {
  50.     background: darkgray;
  51. }
  52.  
  53.  
  54. tbody tr:nth-child(odd) {
  55.     background: lightgray;
  56. }
  57.  
  58. tbody tr:hover, tfoot tr:hover {
  59.     background: black;
  60.     color: white;
  61. }
  62.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement