global.scss 594 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. .width-100px {
  2. width: 100px;
  3. }
  4. .width-200px {
  5. width: 200px;
  6. }
  7. .width-300px {
  8. width: 300px;
  9. }
  10. .width-400px {
  11. width: 400px;
  12. }
  13. .width-600px {
  14. width: 600px;
  15. }
  16. .margin-bottom-5px {
  17. margin-bottom: 5px;
  18. }
  19. .margin-bottom-10px {
  20. margin-bottom: 10px;
  21. }
  22. .static-table {
  23. width: 100%;
  24. border-collapse: collapse;
  25. td {
  26. border: 1px solid #dddddd;
  27. height: 51px;
  28. text-align: center;
  29. vertical-align: middle;
  30. }
  31. tr:nth-child(odd) {
  32. background-color: #f9f9f9;
  33. }
  34. tr:nth-child(even) {
  35. background-color: #ffffff;
  36. }
  37. tr:hover {
  38. background-color: #ecf3f8;
  39. }
  40. }