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