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.

260 lines
2.9 KiB

  1. html {
  2. overflow-y: scroll;
  3. }
  4. body {
  5. background-color: #fcfcf8;
  6. font-family: Verdana, sans-serif;
  7. padding: 0.75em;
  8. line-height: 1.333;
  9. }
  10. h1, h2, h3, h4, h5, h6 {
  11. font-weight: bold;
  12. margin-bottom: 0.5em;
  13. }
  14. h1 {
  15. font-size: 175%;
  16. }
  17. h2 {
  18. font-size: 150%;
  19. }
  20. h3 {
  21. font-size: 125%;
  22. }
  23. h4 {
  24. font-size: 113%;
  25. }
  26. h5, h6 {
  27. font-size: 100%;
  28. }
  29. a {
  30. color: #338;
  31. text-decoration: none;
  32. }
  33. a:hover {
  34. color: #33f;
  35. text-decoration: underline;
  36. }
  37. p {
  38. font-size: 75%;
  39. margin-bottom: 0.375em;
  40. }
  41. strong {
  42. font-weight: bold;
  43. }
  44. em {
  45. font-style: italic;
  46. }
  47. p.nav {
  48. margin-top: 1.5em;
  49. font-size: 56%;
  50. text-transform: uppercase;
  51. }
  52. .clear {
  53. clear: both;
  54. height: 0;
  55. overflow: hidden;
  56. }
  57. #container {
  58. width: 50em;
  59. margin: 0.5em auto;
  60. background-color: #fff;
  61. padding: 0.75em 1.5em;
  62. border: outset 1px;
  63. }
  64. #flash_notice, #flash_error {
  65. font-size: 75%;
  66. padding: 0.375em 1.5em;
  67. margin: 0.5em 0;
  68. }
  69. #flash_notice {
  70. background-color: #cfc;
  71. border: solid 1px #6c6;
  72. }
  73. #flash_error {
  74. background-color: #fcc;
  75. border: solid 1px #c66;
  76. }
  77. .fieldWithErrors {
  78. display: inline;
  79. }
  80. #errorExplanation {
  81. width: 25em;
  82. border: 2px solid #cf0000;
  83. padding: 0;
  84. padding-bottom: 0.75em;
  85. margin-bottom: 1.25em;
  86. background-color: #f0f0f0;
  87. }
  88. #errorExplanation h2 {
  89. text-align: left;
  90. font-weight: bold;
  91. padding: 0.375em 0.375em 0.375em 1.0em;
  92. font-size: 75%;
  93. margin: 0;
  94. background-color: #c00;
  95. color: #fff;
  96. }
  97. #errorExplanation p {
  98. color: #333;
  99. margin-bottom: 0;
  100. padding: 0.5em;
  101. }
  102. #errorExplanation ul {
  103. margin: 0.125em 1.5em;
  104. }
  105. #errorExplanation ul li {
  106. font-size: 75%;
  107. list-style: disc;
  108. }
  109. .left {
  110. float: left;
  111. }
  112. .right {
  113. float: right;
  114. }
  115. .light {
  116. background-color: #fcfcf8;
  117. }
  118. .dark {
  119. background-color: #f4f2ee;
  120. }
  121. .listing {
  122. width: 100%;
  123. }
  124. .listing th,
  125. .listing td {
  126. font-size: 69%;
  127. }
  128. .listing tr:hover {
  129. background-color: #b4cfe7;
  130. cursor: pointer;
  131. }
  132. .listing th,
  133. .listing td {
  134. border: 1px solid #fff;
  135. padding: 0.125em 0.375em;
  136. }
  137. .listing th {
  138. background-color: #ebe9e5;
  139. }
  140. .listing .number {
  141. width: 2em;
  142. text-align: right;
  143. }
  144. fieldset .label {
  145. font-size: 56%;
  146. font-weight: bold;
  147. text-transform: uppercase;
  148. padding-left: 0.25em;
  149. }
  150. fieldset .date {
  151. width: 8em;
  152. }
  153. fieldset {
  154. width: 19em;
  155. border: solid 1px #aaa;
  156. padding: 0.75em 0.5em 0.875em 0.5em;
  157. margin-bottom: 1.25em;
  158. }
  159. fieldset.loads {
  160. width: 27.5em;
  161. }
  162. fieldset table {
  163. width: 100%;
  164. }
  165. fieldset table td {
  166. border: none;
  167. }
  168. legend {
  169. color: #000;
  170. border: solid 1px #ccc;
  171. font-size: 81%;
  172. font-weight: bold;
  173. padding: 0 0.5em;
  174. }
  175. table input {
  176. border: none;
  177. }
  178. .border {
  179. border: 1px solid #ccc;
  180. }
  181. .name {
  182. width: 8em;
  183. }
  184. .street {
  185. width: 22em;
  186. }
  187. .city {
  188. width: 10em;
  189. }
  190. .state {
  191. width: 1em;
  192. }
  193. .zip {
  194. width: 3em;
  195. }
  196. .date {
  197. width: 6em;
  198. text-align: center;
  199. }
  200. .payrate {
  201. width: 3em;
  202. text-align: right;
  203. }
  204. .ssn {
  205. width: 8em;
  206. }
  207. .tax {
  208. width: 3.25em;
  209. }