gh.css 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182
  1. /* GeminiHello style-sheet. */
  2. body {
  3. padding: 0px;
  4. margin: 0px;
  5. background-color: rgb(190,190,190);
  6. color: #000000;
  7. }
  8. body, input, textarea, select {
  9. font-family: Arial, Helvetica;
  10. font-size: 14px;
  11. line-height: 18px;
  12. }
  13. /* Corrects styling for new HTML semantic elements in older browsers. */
  14. article, aside, details, figcaption, figure,
  15. footer, header, hgroup, menu, nav, section {
  16. display: block;
  17. }
  18. /* When placed at the end of a block, clears the floating blocks above.
  19. When placed at the beginning of a block, avoids some issues caused
  20. by margin collapsing (especially in IE7). */
  21. .clear {
  22. display: block;
  23. clear: both;
  24. height: 1px;
  25. margin-bottom: -1px;
  26. }
  27. /* Standard fixed-width layout. */
  28. #container {
  29. background-color: white;
  30. width: 1000px;
  31. margin: 0px auto;
  32. }
  33. #header,
  34. #content,
  35. #footer {
  36. }
  37. #header,
  38. #footer {
  39. background-color: rgb(200,210,254);
  40. padding: 4px 10px;
  41. }
  42. #content {
  43. padding: 10px 10px;
  44. }
  45. #messages p {
  46. padding: 13px;
  47. border-width: 2px;
  48. border-style: solid;
  49. }
  50. #messages .success {
  51. border-color: #c6d880;
  52. background-color: #e6efc2;
  53. color: #264409;
  54. }
  55. #messages .error {
  56. background-color: #fbe3e4;
  57. color: #8a1f11;
  58. border-color: #fbc2c4;
  59. }
  60. #messages .warning {
  61. background-color: #fff6bf;
  62. color: #514721;
  63. border-color: #ffd324;;
  64. }
  65. #messages .normal {
  66. background-color: #d5edf8;
  67. color: #205791;
  68. border-color: #92cae4;
  69. }