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.

54 lines
816 B

  1. #flash_notice, #flash_error {
  2. font-size: 75%;
  3. padding: 0.375em 1.5em;
  4. margin: 0.5em 0;
  5. }
  6. #flash_notice {
  7. background-color: #cfc;
  8. border: solid 1px #6c6;
  9. }
  10. #flash_error {
  11. background-color: #fcc;
  12. border: solid 1px #c66;
  13. }
  14. .fieldWithErrors {
  15. display: inline;
  16. }
  17. #errorExplanation {
  18. width: 25em;
  19. border: 2px solid #cf0000;
  20. padding: 0;
  21. padding-bottom: 0.75em;
  22. margin-bottom: 1.25em;
  23. background-color: #f0f0f0;
  24. }
  25. #errorExplanation h2 {
  26. text-align: left;
  27. font-weight: bold;
  28. padding: 0.375em 0.375em 0.375em 1.0em;
  29. font-size: 75%;
  30. margin: 0;
  31. background-color: #c00;
  32. color: #fff;
  33. }
  34. #errorExplanation p {
  35. color: #333;
  36. margin-bottom: 0;
  37. padding: 0.5em;
  38. }
  39. #errorExplanation ul {
  40. margin: 0.125em 1.5em;
  41. }
  42. #errorExplanation ul li {
  43. font-size: 75%;
  44. list-style: disc;
  45. }