Advertisement
Guest User

Css webtech week 5 opdracht 6

a guest
Oct 6th, 2015
90
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 0.75 KB | None | 0 0
  1. @import url(http://fonts.googleapis.com/css?family=Scada);
  2.  
  3. body {
  4.     font-family: 'Scada', Arial, sans-serif;
  5.     color: #11111;
  6. }
  7. table {
  8.     width: 600px;
  9. }
  10. th, td {
  11.     padding: 10px;
  12. }
  13. th {
  14.     text-transform: uppercase;
  15.     letter-spacing: 0.1 em;
  16.     font-size: 12px;
  17.     border-bottom-width: 2px;
  18.     border-bottom-style: solid;
  19.     border-bottom-color: #111111;
  20.     border-top-width: 1px;
  21.     border-top-style: solid;
  22.     border-top-color: #999999;
  23. }
  24. thead>tr {
  25.     background-color: #3ce6e5;
  26. }
  27. tfoot>tr {
  28.     background-color: #dfdfdf;
  29. }
  30. tbody>tr:nth-child(even){
  31.     background-color: #dfdfdf;
  32. }
  33. tbody>tr:hover {
  34.     background-color: #a1c4c3;
  35.     color: white;
  36. }
  37. td.album {
  38.     font-style: italic;
  39. }
  40. td.rating {
  41.     text-align: center;
  42. }
  43. a {
  44.     color: #111111;
  45. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement