summaryrefslogtreecommitdiff
path: root/basewiki/style.css
blob: ef7f23c188c0063ac349d2e1d4cce774f01ced22 (plain)
  1. .header {
  2. margin: 0;
  3. font-size: 22px;
  4. font-weight: bold;
  5. line-height: 1em;
  6. display: block;
  7. }
  8. .author {
  9. margin: 0;
  10. font-size: 18px;
  11. font-weight: bold;
  12. display: block;
  13. }
  14. #actions ul {
  15. margin: 0;
  16. padding: 6px;
  17. list-style-type: none;
  18. border-bottom: 1px solid #000;
  19. }
  20. #actions li {
  21. display: inline;
  22. padding: .2em .4em;
  23. }
  24. #searchform {
  25. display: inline;
  26. float: right;
  27. }
  28. #content {
  29. border-bottom: 1px solid #000;
  30. }
  31. #editcontent {
  32. width: 100%;
  33. }
  34. /* Stuff for the RecentChanges table. */
  35. tr.changeheader {
  36. background: #eee;
  37. color: black !important;
  38. }
  39. tr.changeinfo {
  40. background: #eee;
  41. color: black !important;
  42. }
  43. th.changeheader {
  44. padding: 1px .3em;
  45. }
  46. td.changeinfo {
  47. padding: 1px .3em;
  48. }
  49. td.changetime {
  50. white-space: nowrap;
  51. padding: 1px .3em;
  52. }
  53. td.changelog {
  54. font-style: italic;
  55. }
  56. /* Used for adding a blog page. */
  57. #blogform {
  58. padding: 10px 10px;
  59. border: 1px solid #aaa;
  60. background: #eee;
  61. color: black !important;
  62. }
  63. .inlinepage {
  64. padding: 10px 10px;
  65. border: 1px solid #aaa;
  66. }
  67. #backlinks {
  68. margin: 1em 0;
  69. }
  70. #footer {
  71. margin: 1em 0;
  72. }
  73. .pageinfo {
  74. font-style: italic;
  75. display: block;
  76. }
  77. /* Used for invalid form fields. */
  78. .fb_invalid {
  79. color: red;
  80. background: white !important;
  81. }
  82. /* Used for required form fields. */
  83. .fb_required {
  84. font-weight: bold;
  85. }
  86. /* RSS button. */
  87. .rssbutton {
  88. background: #ff6600;
  89. color: white !important;
  90. border-left: 1px solid #cc9966;
  91. border-top: 1px solid #ccaa99;
  92. border-right: 1px solid #993300;
  93. border-bottom: 1px solid #331100;
  94. padding: 0px 0.5em 0px 0.5em;
  95. font-family: helvetica, arial, sans-serif;
  96. font-weight: bold;
  97. font-size: small;
  98. text-decoration: none;
  99. margin-top: 1em;
  100. }
  101. .rssbutton:hover {
  102. color: white !important;
  103. background: #ff9900;
  104. }
  105. /* Tag cloud. */
  106. .pagecloud {
  107. float: right;
  108. width: 30%;
  109. text-align: center;
  110. }
  111. .smallestPC { font-size: 70%; }
  112. .smallPC { font-size: 85%; }
  113. .normalPC { font-size: 100%; }
  114. .bigPC { font-size: 115%; }
  115. .biggestPC { font-size: 130%; }
  116. #sidebar {
  117. line-height: 3ex;
  118. width: 20ex;
  119. float: right;
  120. margin-left: 40px;
  121. margin-bottom: 40px;
  122. padding: 2ex 2ex;
  123. }
  124. .infobox {
  125. float: right;
  126. margin-left: 2ex;
  127. margin-top: 1ex;
  128. margin-bottom: 1ex;
  129. padding: 1ex 1ex;
  130. border: 1px solid #aaa;
  131. }
  132. .notebox {
  133. float: right;
  134. margin-left: 2ex;
  135. margin-top: 1ex;
  136. margin-bottom: 1ex;
  137. padding: 1ex 1ex;
  138. border: 1px solid #aaa;
  139. width: 25%
  140. }
  141. /* outlines */
  142. li.L1 {
  143. list-style: upper-roman;
  144. }
  145. li.L2 {
  146. list-style: decimal;
  147. }
  148. li.L3 {
  149. list-style: lower-alpha;
  150. }
  151. li.L4 {
  152. list-style: disc;
  153. }
  154. li.L5 {
  155. list-style: square;
  156. }
  157. li.L6 {
  158. list-style: circle;
  159. }
  160. li.L7 {
  161. list-style: lower-roman;
  162. }
  163. li.L8 {
  164. list-style: upper-alpha;
  165. }