Basis of rails-driven app for local business
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
This repo is archived. You can view files and clone it, but cannot push or open issues/pull-requests.

174 lines
1.9 KiB

  1. #container {
  2. width: 50em;
  3. margin: 0.5em auto;
  4. background-color: #fff;
  5. padding: 0.75em 1.5em;
  6. border: outset 1px;
  7. }
  8. .listing {
  9. width: 100%;
  10. }
  11. .listing th,
  12. .listing td {
  13. font-size: 69%;
  14. }
  15. .listing tr:hover {
  16. background-color: #b4cfe7;
  17. cursor: pointer;
  18. }
  19. .listing th,
  20. .listing td {
  21. border: 1px solid #fff;
  22. padding: 0.125em 0.375em;
  23. }
  24. .listing th {
  25. background-color: #ebe9e5;
  26. }
  27. .listing .number {
  28. width: 2em;
  29. text-align: right;
  30. }
  31. .listing .load_number {
  32. width: 4em;
  33. text-align: right;
  34. padding-right: 0.25em;
  35. }
  36. .listing .name {
  37. width: 6em;
  38. }
  39. .listing .street {
  40. width: 12em;
  41. }
  42. .listing .city {
  43. width: 7em;
  44. }
  45. .listing .state {
  46. width: 1.5em;
  47. }
  48. .listing .zip {
  49. width: 3em;
  50. }
  51. .listing .date {
  52. width: 5em;
  53. }
  54. .listing .payrate {
  55. width: 2.5em;
  56. }
  57. #employee_data {
  58. width: 18em;
  59. float: left;
  60. }
  61. #employee_data fieldset {
  62. width: 16.25em;
  63. }
  64. #employee_data col {
  65. width: 1.625em;
  66. }
  67. #employee_firstname,
  68. #employee_lastname {
  69. width: 9em;
  70. }
  71. #employee_street {
  72. width: 19em;
  73. }
  74. #employee_city {
  75. width: 13em;
  76. }
  77. #employee_state,
  78. #employee_dl_state {
  79. width: 1.5em;
  80. }
  81. #employee_zip {
  82. width: 3.5em;
  83. }
  84. #employee_dob,
  85. #employee_hired,
  86. #employee_dl_expire {
  87. width: 6em;
  88. text-align: center;
  89. }
  90. #employee_phone,
  91. #employee_ssn {
  92. width: 7em;
  93. }
  94. #employee_payrate {
  95. width: 3.5em;
  96. text-align: right;
  97. }
  98. #employee_tax_status,
  99. #employee_dependents {
  100. width: 1.5em;
  101. text-align: center;
  102. }
  103. #employee_dl_number {
  104. width: 9em;
  105. }
  106. #employee_truck,
  107. #employee_trailer {
  108. width: 5.5em;
  109. }
  110. #driver_loads {
  111. float: right;
  112. }
  113. #driver_loads fieldset {
  114. width: 30em;
  115. height: 32.125em;
  116. }
  117. #load_detail {
  118. float: left;
  119. width: 50%;
  120. }
  121. #load_detail fieldset,
  122. #load_expense fieldset {
  123. width: 22.75em;
  124. }
  125. #load_detail col {
  126. width: 1.625em;
  127. }
  128. #load_number {
  129. width: 5em;
  130. }
  131. #load_hub_in,
  132. #load_hub_out {
  133. width: 4em;
  134. }
  135. #load_start_date,
  136. #load_end_date {
  137. width: 6em;
  138. text-align: left;
  139. }