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.

135 lines
1.4 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. strong {
  30. font-weight: bold;
  31. }
  32. em {
  33. font-style: italic;
  34. }
  35. a {
  36. color: #338;
  37. text-decoration: none;
  38. }
  39. a:hover {
  40. color: #33f;
  41. text-decoration: underline;
  42. }
  43. p {
  44. font-size: 75%;
  45. margin-bottom: 0.375em;
  46. }
  47. p.nav {
  48. margin-top: 1.5em;
  49. font-size: 56%;
  50. text-transform: uppercase;
  51. }
  52. table {
  53. table-layout: fixed;
  54. }
  55. tr {
  56. height: 1em;
  57. }
  58. fieldset {
  59. border: solid 1px #aaa;
  60. padding: 0 0.5em 0.875em 0.5em;
  61. margin-bottom: 1.25em;
  62. }
  63. legend {
  64. border: solid 1px #ccc;
  65. font-size: 81%;
  66. font-weight: bold;
  67. padding: 0 0.5em;
  68. }
  69. fieldset input {
  70. border: none;
  71. }
  72. fieldset label {
  73. font-size: 56%;
  74. font-weight: bold;
  75. text-transform: uppercase;
  76. margin-top: 0.25em;
  77. color: #333;
  78. }
  79. fieldset table {
  80. margin-top: 0.5em;
  81. }
  82. img.calendar_date_select_popup_icon {
  83. margin-left: -4px;
  84. }
  85. .left {
  86. text-align: left;
  87. }
  88. .right {
  89. text-align: right;
  90. }
  91. .center {
  92. text-align: center;
  93. }
  94. .light {
  95. background-color: #fcfcf8;
  96. }
  97. .dark {
  98. background-color: #f4f2ee;
  99. }
  100. .border {
  101. border: 1px solid #ccc;
  102. }
  103. .clear {
  104. clear: both;
  105. height: 0;
  106. overflow: hidden;
  107. }