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.

169 lines
1.8 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 .name {
  32. width: 6em;
  33. }
  34. .listing .street {
  35. width: 12em;
  36. }
  37. .listing .city {
  38. width: 7em;
  39. }
  40. .listing .state {
  41. width: 1.5em;
  42. }
  43. .listing .zip {
  44. width: 3em;
  45. }
  46. .listing .date {
  47. width: 5em;
  48. }
  49. .listing .payrate {
  50. width: 2.5em;
  51. }
  52. #employee_data {
  53. width: 18em;
  54. float: left;
  55. }
  56. #employee_data fieldset {
  57. width: 16.25em;
  58. }
  59. #employee_data col {
  60. width: 1.625em;
  61. }
  62. #employee_firstname,
  63. #employee_lastname {
  64. width: 9em;
  65. }
  66. #employee_street {
  67. width: 19em;
  68. }
  69. #employee_city {
  70. width: 13em;
  71. }
  72. #employee_state,
  73. #employee_dl_state {
  74. width: 1.5em;
  75. }
  76. #employee_zip {
  77. width: 3.5em;
  78. }
  79. #employee_dob,
  80. #employee_hired,
  81. #employee_dl_expire {
  82. width: 6em;
  83. text-align: center;
  84. }
  85. #employee_phone,
  86. #employee_ssn {
  87. width: 7em;
  88. }
  89. #employee_payrate {
  90. width: 3.5em;
  91. text-align: right;
  92. }
  93. #employee_tax_status,
  94. #employee_dependents {
  95. width: 1.5em;
  96. text-align: center;
  97. }
  98. #employee_dl_number {
  99. width: 9em;
  100. }
  101. #employee_truck,
  102. #employee_trailer {
  103. width: 5.5em;
  104. }
  105. #driver_loads {
  106. float: right;
  107. }
  108. #driver_loads fieldset {
  109. width: 30em;
  110. height: 32.125em;
  111. }
  112. #load_detail {
  113. float: left;
  114. width: 50%;
  115. }
  116. #load_detail fieldset,
  117. #load_expense fieldset {
  118. width: 22.75em;
  119. }
  120. #load_detail col {
  121. width: 1.625em;
  122. }
  123. #load_number {
  124. width: 5em;
  125. }
  126. #load_hub_in,
  127. #load_hub_out {
  128. width: 4em;
  129. }
  130. #load_start_date,
  131. #load_end_date {
  132. width: 6em;
  133. text-align: left;
  134. }