vonko1988

CSS_overview_homework_task2.css

Jan 26th, 2014
133
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 1.19 KB | None | 0 0
  1. body {
  2.     background:black;
  3. }
  4.  
  5. table {
  6.     border-spacing:0;
  7.     background:white;
  8. }
  9.  
  10. th {
  11.     font-family:Segoe UI, Arial;
  12.     font-weight: lighter;
  13.     font-size:0.8em;
  14.     text-align:left;
  15.     /*Here I tried to make the borders
  16.     precisely as the picture*/
  17.     border-left:1px inset gray;
  18.     border-right:1px outset white;
  19.     border-bottom:1px outset gray;
  20.     padding:0 0 0.4em 0.2em;
  21.     background:#5cc006;
  22.     color:white;
  23. }
  24.  
  25. th:first-of-type {
  26.     border-left:none;
  27. }
  28.  
  29. th:last-of-type {
  30.     padding-right:0.8em;
  31. }
  32.  
  33. td {
  34.     text-align:left;
  35.     border-left:1px solid gray;
  36.     padding:0.2em 3em 0.2em 0.2em;
  37. }
  38.  
  39. td.country {
  40.     padding-left:2em;  
  41.     background:url("germany.png") no-repeat;
  42.     background-size:1.4em;
  43.     background-position:0.2em;
  44. }
  45.  
  46. td:first-of-type {
  47.     border-left:none;
  48. }
  49.  
  50. tr:nth-of-type(2n+1) {
  51.     background:#ffffff;
  52. }
  53.  
  54. tr:nth-of-type(2n) {
  55.     background:rgba(229,229,210,0.4);
  56. }
  57.  
  58.  
  59. tr:nth-of-type(2) td.country, tr:nth-of-type(3) td.country {
  60.      background:url("mexico.png") no-repeat;
  61.      background-size:1.4em;
  62.      background-position:0.2em;  
  63. }
  64.  
  65. tr:nth-of-type(4) td.country {
  66.      background:url("britain.png") no-repeat;
  67.      background-size:1.4em;
  68.      background-position:0.2em;
  69. }
Advertisement
Add Comment
Please, Sign In to add comment