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.

81 lines
1.1 KiB

  1. body {
  2. background-color: #4B7399;
  3. font-family: Verdana, Helvetica, Arial;
  4. font-size: 14px;
  5. }
  6. a img {
  7. border: none;
  8. }
  9. a {
  10. color: #0000FF;
  11. }
  12. .clear {
  13. clear: both;
  14. height: 0;
  15. overflow: hidden;
  16. }
  17. #container {
  18. width: 75%;
  19. margin: 0 auto;
  20. background-color: #FFF;
  21. padding: 20px 40px;
  22. border: solid 1px black;
  23. margin-top: 20px;
  24. }
  25. #flash_notice, #flash_error {
  26. padding: 5px 8px;
  27. margin: 10px 0;
  28. }
  29. #flash_notice {
  30. background-color: #CFC;
  31. border: solid 1px #6C6;
  32. }
  33. #flash_error {
  34. background-color: #FCC;
  35. border: solid 1px #C66;
  36. }
  37. .fieldWithErrors {
  38. display: inline;
  39. }
  40. #errorExplanation {
  41. width: 400px;
  42. border: 2px solid #CF0000;
  43. padding: 0px;
  44. padding-bottom: 12px;
  45. margin-bottom: 20px;
  46. background-color: #f0f0f0;
  47. }
  48. #errorExplanation h2 {
  49. text-align: left;
  50. font-weight: bold;
  51. padding: 5px 5px 5px 15px;
  52. font-size: 12px;
  53. margin: 0;
  54. background-color: #c00;
  55. color: #fff;
  56. }
  57. #errorExplanation p {
  58. color: #333;
  59. margin-bottom: 0;
  60. padding: 8px;
  61. }
  62. #errorExplanation ul {
  63. margin: 2px 24px;
  64. }
  65. #errorExplanation ul li {
  66. font-size: 12px;
  67. list-style: disc;
  68. }