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.

166 lines
2.0 KiB

  1. html {
  2. overflow-y: scroll;
  3. }
  4. body {
  5. background-color: #ffc;
  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. th, td {
  30. font-size: 70%;
  31. }
  32. a {
  33. color: #039;
  34. text-decoration: none;
  35. }
  36. a:hover {
  37. color: #00f;
  38. text-decoration: underline;
  39. }
  40. p {
  41. font-size: 75%;
  42. margin-bottom: 0.375em;
  43. }
  44. strong {
  45. font-weight: bold;
  46. }
  47. em {
  48. font-style: italic;
  49. }
  50. p.nav {
  51. margin-top: 1.5em;
  52. font-size: 55%;
  53. text-transform: uppercase;
  54. }
  55. .clear {
  56. clear: both;
  57. height: 0;
  58. overflow: hidden;
  59. }
  60. #container {
  61. width: 44em;
  62. margin: 0.5em auto;
  63. background-color: #fff;
  64. padding: 0.75em 1.75em;
  65. border: outset 1px;
  66. }
  67. #flash_notice, #flash_error {
  68. font-size: 75%;
  69. padding: 0.375em 1.5em;
  70. margin: 0.5em 0;
  71. }
  72. #flash_notice {
  73. background-color: #cfc;
  74. border: solid 1px #6c6;
  75. }
  76. #flash_error {
  77. background-color: #fcc;
  78. border: solid 1px #c66;
  79. }
  80. .fieldWithErrors {
  81. display: inline;
  82. }
  83. #errorExplanation {
  84. width: 25em;
  85. border: 2px solid #cf0000;
  86. padding: 0;
  87. padding-bottom: 0.75em;
  88. margin-bottom: 1.25em;
  89. background-color: #f0f0f0;
  90. }
  91. #errorExplanation h2 {
  92. text-align: left;
  93. font-weight: bold;
  94. padding: 0.375em 0.375em 0.375em 1.0em;
  95. font-size: 75%;
  96. margin: 0;
  97. background-color: #c00;
  98. color: #fff;
  99. }
  100. #errorExplanation p {
  101. color: #333;
  102. margin-bottom: 0;
  103. padding: 0.5em;
  104. }
  105. #errorExplanation ul {
  106. margin: 0.125em 1.5em;
  107. }
  108. #errorExplanation ul li {
  109. font-size: 75%;
  110. list-style: disc;
  111. }
  112. .light {
  113. background-color: #e3e3e3;
  114. }
  115. .dark {
  116. background-color: #dcdcdc;
  117. }
  118. .listing {
  119. width: 100%;
  120. }
  121. .listing tr:hover {
  122. background-color: #fc9;
  123. cursor: pointer;
  124. }
  125. .listing th,
  126. .listing td {
  127. border: 1px solid #fff;
  128. padding: 0.125em 0.375em;
  129. }
  130. .listing th {
  131. background-color: #d3d3d3;
  132. }
  133. .listing td.number {
  134. width: 2.5em;
  135. }