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.

125 lines
1.6 KiB

  1. html {
  2. overflow-y: scroll;
  3. }
  4. body {
  5. background-color: #33FF66;
  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: #003399;
  31. text-decoration: none;
  32. }
  33. a:hover {
  34. color: #0000FF;
  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. .clear {
  48. clear: both;
  49. height: 0;
  50. overflow: hidden;
  51. }
  52. #container {
  53. width: 44em;
  54. margin: 0.5em auto;
  55. background-color: #FFFFFF;
  56. padding: 0.75em 1.75em;
  57. border: solid 1px black;
  58. }
  59. #flash_notice, #flash_error {
  60. font-size: 75%;
  61. padding: 0.375em 1.5em;
  62. margin: 0.5em 0;
  63. }
  64. #flash_notice {
  65. background-color: #CCFFCC;
  66. border: solid 1px #66CC66;
  67. }
  68. #flash_error {
  69. background-color: #FFCCCC;
  70. border: solid 1px #CC6666;
  71. }
  72. .fieldWithErrors {
  73. display: inline;
  74. }
  75. #errorExplanation {
  76. width: 25em;
  77. border: 2px solid #CF0000;
  78. padding: 0;
  79. padding-bottom: 0.75em;
  80. margin-bottom: 1.25em;
  81. background-color: #F0F0F0;
  82. }
  83. #errorExplanation h2 {
  84. text-align: left;
  85. font-weight: bold;
  86. padding: 0.375em 0.375em 0.375em 1.0em;
  87. font-size: 75%;
  88. margin: 0;
  89. background-color: #CC0000;
  90. color: #FFFFFF;
  91. }
  92. #errorExplanation p {
  93. color: #333333;
  94. margin-bottom: 0;
  95. padding: 0.5em;
  96. }
  97. #errorExplanation ul {
  98. margin: 0.125em 1.5em;
  99. }
  100. #errorExplanation ul li {
  101. font-size: 75%;
  102. list-style: disc;
  103. }