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