global.css 6.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438
  1. .error {
  2. color: #a00000;
  3. }
  4. .index-link {
  5. text-transform: uppercase;
  6. }
  7. .read-only {
  8. padding-top: 4px ! important;
  9. }
  10. /* START recipe index */
  11. table.recipe-index {
  12. border: 2px solid #ccc;
  13. }
  14. table.recipe-index td {
  15. padding-left: 2px;
  16. padding-right: 2px;
  17. text-transform: uppercase;
  18. }
  19. table.recipe-index td.selected {
  20. background-color: #9cf;
  21. }
  22. ol.recipe-index {
  23. margin-top: 1em;
  24. margin-bottom: 1em;
  25. }
  26. ol.recipe-index .recipe-title {
  27. font-weight: bold;
  28. }
  29. /* END recipe index */
  30. a {
  31. color: #E85616;
  32. text-decoration: none;
  33. font-weight: normal ! important;
  34. }
  35. a:visited {
  36. color: #C09C20;
  37. }
  38. a:link {
  39. color: #E85616;
  40. }
  41. a:hover {
  42. color: #C09C20;
  43. text-decoration: underline;
  44. }
  45. a.back {
  46. background: url(../img/link-left.png) center left no-repeat;
  47. padding-left: 16px;
  48. color: #E85616;
  49. text-decoration: none;
  50. font-weight: normal ! important;
  51. }
  52. a.back:visited {
  53. color: #C09C20;
  54. }
  55. a.back:link {
  56. color: #E85616;
  57. }
  58. a.back:hover {
  59. color: #C09C20;
  60. text-decoration: underline;
  61. }
  62. a.go {
  63. background: url(../img/link.png) center right no-repeat;
  64. padding-right: 16px;
  65. color: #E85616;
  66. text-decoration: none;
  67. font-weight: normal ! important;
  68. }
  69. a.go:visited {
  70. color: #C09C20;
  71. }
  72. a.go:link {
  73. color: #E85616;
  74. }
  75. a.go:hover {
  76. color: #C09C20;
  77. text-decoration: underline;
  78. }
  79. a.minus {
  80. display: block;
  81. position: relative;
  82. top: 0px;
  83. left: 0px;
  84. background-image: url(../img/minus.png);
  85. width: 19px;
  86. height: 20px;
  87. background-position: 0px 0px;
  88. margin: 3px 0px 0px 0px;
  89. }
  90. a.minus:hover {
  91. background-position: 0px -21px;
  92. }
  93. a.minus:active {
  94. background-position: 0px -42px;
  95. }
  96. a.plus {
  97. display: block;
  98. position: relative;
  99. top: 0px;
  100. left: 0px;
  101. background-image: url(../img/plus.png);
  102. width: 19px;
  103. height: 20px;
  104. background-position: 0px 0px;
  105. margin: 0px;
  106. }
  107. a.plus:hover {
  108. background-position: 0px -21px;
  109. }
  110. a.plus:active {
  111. background-position: 0px -42px;
  112. }
  113. body {
  114. background-color: #fff;
  115. margin: 18px 15px 15px 15px;
  116. padding: 0px;
  117. border: 0px;
  118. font-family: Tahoma, Verdana, sans-serif;
  119. font-size: 10pt;
  120. }
  121. div.caption {
  122. font-size: 9pt;
  123. font-style: italic;
  124. margin-bottom: 3pt;
  125. max-width: 300pt;
  126. }
  127. div.edit-banner {
  128. position: absolute;
  129. background-color: #fff;
  130. top: 18px;
  131. right: 15px;
  132. width: auto;
  133. height: auto;
  134. font-size: 9pt;
  135. margin-top: 19pt;
  136. z-index: 99;
  137. }
  138. div.error-intro {
  139. border: thin solid #2A8FF3;
  140. background-color: #ffc;
  141. padding: 4pt;
  142. color: #a00000;
  143. width: auto;
  144. max-width: 465pt;
  145. margin-bottom: 1em;
  146. }
  147. div.formLabel {
  148. float: left;
  149. font-weight: bold;
  150. font-family: Tahoma, Verdana, sans-serif;
  151. font-size: 10pt;
  152. text-align: left;
  153. padding: 4px 8px 2px 2px;
  154. }
  155. div.intro {
  156. font-size: 11pt;
  157. max-width: 465pt;
  158. margin-bottom: 1.5em;
  159. }
  160. div.nav-banner {
  161. position: absolute;
  162. background-color: #fff;
  163. top: 18px;
  164. right: 15px;
  165. width: auto;
  166. height: auto;
  167. font-size: 9pt;
  168. margin-top: 5pt;
  169. z-index: 99;
  170. }
  171. div.recipe-footer {
  172. font-size: 9pt;
  173. color: #ccc;
  174. border-top: 1px solid #ccc;
  175. margin-top: 9pt;
  176. margin-bottom: 9pt;
  177. }
  178. div.recipe-view {
  179. max-width: 40em;
  180. margin: 0px;
  181. padding: 0px;
  182. }
  183. div.return-nav {
  184. margin-bottom: 10pt;
  185. }
  186. div.section {
  187. margin-top: 4px;
  188. margin-bottom: 4px;
  189. margin-left: 2px;
  190. }
  191. div.subsection {
  192. margin-left: 15px;
  193. font-size: 11px;
  194. margin-bottom: 2px;
  195. }
  196. div.section-selected {
  197. font-weight: bold;
  198. margin-bottom: 2px;
  199. margin-left: 2px;
  200. }
  201. div.viewBox {
  202. float: left;
  203. font-family: Tahoma, Verdana, sans-serif;
  204. font-size: 10pt;
  205. text-align: left;
  206. padding: 2px 0px 0px 0px;
  207. }
  208. div.viewLabel {
  209. float: left;
  210. font-weight: bold;
  211. font-family: Tahoma, Verdana, sans-serif;
  212. font-size: 10pt;
  213. text-align: left;
  214. padding: 2px 8px 2px 2px;
  215. }
  216. dd {
  217. font-size: 10pt;
  218. margin-bottom: 1em;
  219. }
  220. dl {
  221. margin-left: 20px;
  222. }
  223. dt {
  224. font-size: 10pt;
  225. font-weight: bold;
  226. margin-bottom: 0.5em;
  227. color: #666;
  228. }
  229. h1 {
  230. color: #2A8FF3;
  231. font-size: 14pt;
  232. font-weight: bold;
  233. border-bottom: 1px solid #ccc;
  234. margin-bottom: 0.5em;
  235. margin-top: 0em;
  236. }
  237. h2 {
  238. color: #666;
  239. font-size: 1em;
  240. border-bottom: 1px solid #ccc;
  241. margin-bottom: 0.5em;
  242. margin-top: 0em;
  243. }
  244. hr.sep {
  245. border-style: dotted;
  246. border-width: 0px 0px 1px 0px;
  247. color: #ccc;
  248. width: 100%;
  249. margin: 12pt 0px 12pt 0px;
  250. padding: 0px;
  251. }
  252. img {
  253. border: 0px;
  254. }
  255. input[type=text], input[type=password], input[type=file], input[type=checkbox], select {
  256. background: #EEEEEE;
  257. border: 1px solid #666666;
  258. color: #000066;
  259. font-family: Tahoma Verdana sans-serif;
  260. font-size: 10pt;
  261. margin-right: 4px;
  262. text-decoration: none;
  263. }
  264. input[type=text], input[type=password] {
  265. width: 15em;
  266. }
  267. input.excerpt, textarea.excerpt {
  268. width: 25em;
  269. }
  270. input.smallnum {
  271. width: 4em;
  272. }
  273. input.vsmallnum {
  274. width: 2em;
  275. }
  276. li {
  277. margin-bottom: 6pt;
  278. }
  279. ol {
  280. margin-top: 0em;
  281. }
  282. p {
  283. margin-top: 0em;
  284. margin-bottom: 1em;
  285. }
  286. span.alt {
  287. display: none;
  288. }
  289. span.caption {
  290. font-size: 9pt;
  291. font-style: italic;
  292. }
  293. span.hilite {
  294. background-color: #ff0;
  295. color: #006;
  296. }
  297. table.form {
  298. border-collapse: collapse;
  299. border-spacing: 0px;
  300. border: none;
  301. }
  302. table.form td {
  303. border: none;
  304. padding: 2px 2px 4px 2px;
  305. vertical-align: top;
  306. }
  307. table.form th {
  308. background-color: inherit;
  309. border: none;
  310. padding: 4px 8px 2px 2px;
  311. }
  312. table.form td + th {
  313. padding-left: 50pt ! important;
  314. }
  315. table.view {
  316. border-collapse: collapse;
  317. border-spacing: 0px;
  318. border: none;
  319. }
  320. table.view td {
  321. border: none;
  322. padding: 2px 2px 4px 2px;
  323. vertical-align: top;
  324. }
  325. table.view th {
  326. background-color: inherit;
  327. border: none;
  328. padding: 2px 2px 4px 2px;
  329. }
  330. table.view td + th {
  331. padding-left: 50pt ! important;
  332. }
  333. textarea {
  334. background: #eee;
  335. border: 1px solid #666;
  336. color: #006;
  337. font-family: Tahoma, Verdana, sans-serif;
  338. font-size: 10pt;
  339. padding-left: 2px;
  340. text-decoration: none;
  341. width: 15em;
  342. height: 5em;
  343. }
  344. textarea.big {
  345. width: 40em;
  346. }
  347. textarea.recipeStep {
  348. width: 40em;
  349. height: 4em;
  350. }
  351. td {
  352. font-family: Tahoma, Verdana, sans-serif;
  353. font-size: 10pt;
  354. text-align: left;
  355. }
  356. th {
  357. font-family: Tahoma, Verdana, sans-serif;
  358. font-size: 10pt;
  359. text-align: left;
  360. }
  361. tr {
  362. padding-bottom: 20px;
  363. vertical-align: top;
  364. }