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