products.css 1.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495
  1. table.table {
  2. border: none;
  3. width: 100%;
  4. height: 100%;
  5. border-spacing: 1px;
  6. border-collapse: separate;
  7. margin: 0;
  8. margin-top: -15px;
  9. }
  10. table.table th {
  11. background-color: #888;
  12. color: white;
  13. text-align: left;
  14. padding: 1px;
  15. padding-bottom: 0px;
  16. font-size: 11px;
  17. }
  18. table.table td {
  19. color: #444;
  20. text-align: left;
  21. padding: 1px;
  22. font-size: 10px;
  23. font-weight: bold;
  24. }
  25. table.table tr {
  26. background-color: #fff;
  27. }
  28. table.table tr:nth-child(even) {
  29. background-color: transparent;
  30. }
  31. #minicart {
  32. display: none;
  33. position: fixed;
  34. margin-left: -115px;
  35. margin-top: -20px;
  36. background-color: transparent;
  37. width: 300px;
  38. height: auto;
  39. min-height: 150px;
  40. z-index: 999999999;
  41. }
  42. table.minilist {
  43. border: none;
  44. width: 100%;
  45. height: auto;
  46. border-spacing: 3px;
  47. border-collapse: collapse;
  48. margin: 0;
  49. font-size: 0.8rem;
  50. text-transform: none;
  51. }
  52. table.minilist th {
  53. background-color: #ccc;
  54. color: #666;
  55. text-align: left;
  56. padding: 5px;
  57. }
  58. table.minilist td {
  59. color: #444;
  60. text-align: left;
  61. padding: 5px;
  62. border-spacing: 3px;
  63. border-collapse: collapse;
  64. }
  65. table.minilist td a {
  66. color: #666;
  67. text-decoration: none;
  68. }
  69. table.minilist tr {
  70. background-color: #fff;
  71. }
  72. table.minilist tr:nth-child(even) {
  73. background-color: #eee;
  74. }
  75. table.minilist td.iconed {
  76. text-align: center;
  77. }
  78. table.minilist td.mini-footer {
  79. background-color: #232A31;
  80. color: white;
  81. }