Advertisement
Iyanyan

css table

Oct 20th, 2019
191
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.40 KB | None | 0 0
  1. h1{
  2. font-family: sans-serif;
  3. }
  4.  
  5. table {
  6. font-family: Arial, Helvetica, sans-serif;
  7. color: #666;
  8. text-shadow: 1px 1px 0px #fff;
  9. background: #eaebec;
  10. border: #ccc 1px solid;
  11. }
  12.  
  13. table th {
  14. padding: 15px 35px;
  15. border-left:1px solid #e0e0e0;
  16. border-bottom: 1px solid #e0e0e0;
  17. background: #ededed;
  18. }
  19.  
  20. table th:first-child{
  21. border-left:none;
  22. }
  23.  
  24. table tr {
  25. text-align: center;
  26. padding-left: 20px;
  27. }
  28.  
  29. table td:first-child {
  30. text-align: left;
  31. padding-left: 20px;
  32. border-left: 0;
  33. }
  34.  
  35. table td {
  36. padding: 15px 35px;
  37. border-top: 1px solid #ffffff;
  38. border-bottom: 1px solid #e0e0e0;
  39. border-left: 1px solid #e0e0e0;
  40. background: #fafafa;
  41. background: -webkit-gradient(linear, left top, left bottom, from(#fbfbfb), to(#fafafa));
  42. background: -moz-linear-gradient(top, #fbfbfb, #fafafa);
  43. }
  44.  
  45. table tr:last-child td {
  46. border-bottom: 0;
  47. }
  48.  
  49. table tr:last-child td:first-child {
  50. -moz-border-radius-bottomleft: 3px;
  51. -webkit-border-bottom-left-radius: 3px;
  52. border-bottom-left-radius: 3px;
  53. }
  54.  
  55. table tr:last-child td:last-child {
  56. -moz-border-radius-bottomright: 3px;
  57. -webkit-border-bottom-right-radius: 3px;
  58. border-bottom-right-radius: 3px;
  59. }
  60.  
  61. table tr:hover td {
  62. background: #f2f2f2;
  63. background: -webkit-gradient(linear, left top, left bottom, from(#f2f2f2), to(#f0f0f0));
  64. background: -moz-linear-gradient(top, #f2f2f2, #f0f0f0);
  65. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement