Guest User

Untitled

a guest
Nov 24th, 2017
73
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.20 KB | None | 0 0
  1. <table class="table-md">
  2. <thead>
  3. ...
  4. </thead>
  5. <tdody>
  6. <tr>
  7. <td>...</td>
  8. ...
  9. </tr>
  10. <tr "Здесь будет располагаться hidden="true"(Т.е элемент внешне не считается нечетным, его не видно) ">
  11. <td>...</td>
  12. ...
  13. </tr>
  14. </tbody>
  15. </table>
  16.  
  17. .table-md tr:hover {
  18. cursor: pointer;
  19. }
  20.  
  21. .table-md tbody:nth-child(odd) {
  22. background: #CCC;
  23. }
  24.  
  25.  
  26. .table-md td{
  27. height: auto;
  28. padding-left: 15px;
  29. padding-right: 15px;
  30. padding-top: 7px;
  31. margin-top: 20px;
  32. border-radius: 2px;
  33. transition: 0.4s ease;
  34. -moz-transition: 0.4s ease;
  35. -webkit-transition: 0.4s ease;
  36. }
  37.  
  38. .table-md td:hover {
  39. background-color: #e0effd;
  40. transition: 0.2s ease;
  41. -moz-transition: 0.2s ease;
  42. -webkit-transition: 0.2s ease;
  43. transform: scale(1.02);
  44. -moz-transform: scale(1.02);
  45. -webkit-transform: scale(1.02);
  46. }
  47.  
  48. .table-md thead {
  49. font-family: 'Roboto', sans-serif;
  50. font-size: 16px;
  51. color: #878787;
  52. background-color: #fff;
  53. }
Add Comment
Please, Sign In to add comment