/stylesheets/base.css

http://raihan.googlecode.com/ · CSS · 141 lines · 102 code · 22 blank · 17 comment · 0 complexity · 1a999b0acfde9455cd51757118c41794 MD5 · raw file

  1. body
  2. {
  3. font-family: Verdana, Arial, Helvetica, sans-serif;
  4. font-size: 12px;
  5. margin: 10px;
  6. }
  7. td
  8. {
  9. font-family: Verdana, Arial, Helvetica, sans-serif;
  10. font-size: 12px;
  11. padding: 4px;
  12. }
  13. th
  14. {
  15. font-family: Verdana, Arial, Helvetica, sans-serif;
  16. font-size: 12px;
  17. background: #d3d3d3;
  18. font-weight: bold;
  19. padding: 6px;
  20. }
  21. /*
  22. a
  23. {
  24. color: #cd0a0a;
  25. text-decoration: underline;
  26. padding: 1px;
  27. }
  28. a:hover
  29. {
  30. color: white;
  31. text-decoration: none;
  32. background: #cd0a0a;
  33. }
  34. */
  35. img
  36. {
  37. border: none;
  38. }
  39. code
  40. {
  41. color: #000;
  42. font-family: Courier;
  43. }
  44. tt
  45. {
  46. font-size: 12px;
  47. color: #666;
  48. }
  49. form label
  50. {
  51. margin-top: 5px;
  52. display: block;
  53. font-weight: bold;
  54. }
  55. input[type=submit]
  56. {
  57. margin-top: 15px;
  58. /* display: block; */
  59. }
  60. input[type=button]
  61. {
  62. margin-top: 15px;
  63. /* display: block; */
  64. }
  65. .error-messages
  66. {
  67. background: red;
  68. color: white;
  69. padding: 5px;
  70. }
  71. .info-messages
  72. {
  73. background: green;
  74. color: white;
  75. padding: 5px;
  76. }
  77. .warning-messages
  78. {
  79. color: red;
  80. }
  81. .field-with-errors
  82. {
  83. color: red;
  84. }
  85. .footer-info
  86. {
  87. color: gray;
  88. font-size: 12px;
  89. }
  90. .tableHead
  91. {
  92. font-weight: bold;
  93. background: #800000;
  94. color: white;
  95. }
  96. .tableHead td
  97. {
  98. text-align: center;
  99. }
  100. .stripeColor
  101. {
  102. background: #ececec;
  103. }
  104. .add
  105. {
  106. background: url(images/add.png) no-repeat center left;
  107. }
  108. .edit
  109. {
  110. background: url(images/edit.png) no-repeat center left;
  111. }
  112. .delete
  113. {
  114. background: url(images/close.png) no-repeat center left;
  115. }
  116. .fieldWithErrors input {
  117. border: 1px solid red;
  118. }