Advertisement
LumChron

Das Neunte System

Sep 24th, 2019
185
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.40 KB | None | 0 0
  1. /* Originally from Earle Martin, as seen on
  2. http://downlode.org/log/2005-01-14/Mu_License,
  3. Adapted by Alex Schroeder for Oddmuse.
  4. Alex's changes available under the Mu License:
  5.  
  6. If you are asking what license this is released under,
  7. you are asking the wrong question.
  8. */
  9.  
  10. body {
  11. margin: 12px;
  12. line-height: 1.2;
  13. background: #002;
  14. color: #fff;
  15. font-family: "Andale Mono", Consolas, "Courier New", Courier, fixed;
  16. }
  17.  
  18. h1, h2, h3, h4 {
  19. font-family: "Optima", "Helvetica", sans-serif ;
  20. font-weight: normal ;
  21. }
  22.  
  23. h1 a:link, h1 a:visited {
  24. font-weight: normal;
  25. color: #bfe;
  26. }
  27.  
  28. a {
  29. text-decoration: none;
  30. }
  31.  
  32. a:link, a:active {
  33. color: #9df;
  34. }
  35.  
  36. a:visited {
  37. color: #add;
  38. }
  39.  
  40. a:hover {
  41. text-decoration: underline;
  42. }
  43.  
  44. blockquote {
  45. border-left: 1px solid #fff;
  46. padding-left: 10px;
  47. margin-left: 20px;
  48. }
  49.  
  50. hr { clear:both; }
  51.  
  52. div.content {
  53. border: 1px solid #fff;
  54. padding: 20px;
  55. color: #fff;
  56. background: #333;
  57. }
  58.  
  59. /* Tables */
  60.  
  61. table.user {
  62. margin: 1ex 4em;
  63. padding: 1ex 1em;
  64. border-top: 1px solid white;
  65. border-bottom: 1px solid white;
  66. }
  67. table.user td, table.user th {
  68. border-style: none;
  69. padding:5px 10px;
  70. vertical-align: top;
  71. }
  72. table.user td.mark { background-color: #6ca; }
  73. table.user td.j { text-align: justify; }
  74. table.user td.c { text-align: center; }
  75. table.user td.l { text-align: left; }
  76. table.user td.r { text-align: right; }
  77. table.user th { font-weight: bold; }
  78.  
  79. table.history { border-style:none; }
  80. td.history { border-style:none; }
  81.  
  82. /* images with links, captions, etc */
  83.  
  84. div.left .left { float: none; }
  85. div.right .right { float: none; }
  86. .right { float: right; margin-left: 1em; }
  87. .left { float: left; margin-right: 1em; }
  88. div.image { display: inline; margin: 1em; font-size: 90%; text-align: center; }
  89.  
  90. /* diff */
  91.  
  92. div.old { background-color: #944; }
  93. div.new { background-color: #498; }
  94.  
  95. /* edit */
  96.  
  97. div.edit { border:none; background:inherit; width:100%; }
  98. div.edit textarea { width:95%; color:#fff; background:#333; }
  99.  
  100. /* comment pages with username, homepage, and email subscription */
  101.  
  102. .comment textarea { width:100%; color:#fff; background:#333; }
  103. .comment span { display: block; }
  104. .comment span label { display: inline-block; width: 10em; }
  105.  
  106. /* recent changes */
  107.  
  108. .rc strong { font-weight: normal; }
  109.  
  110. /* calendar: not checked */
  111.  
  112. div.year { border:none; background:inherit; }
  113. div.month { padding:0; margin:0 2ex; }
  114. body > div.month {
  115. float:right;
  116. background-color:inherit;
  117. border:solid thin;
  118. padding:0 1ex;
  119. }
  120. div.year > div.month { float:left; }
  121. div.footer { clear:both; }
  122. div.month a.edit { color:inherit; font-weight:inherit; }
  123. div.month .today { border: 1px solid red; }
  124.  
  125. /* logo */
  126.  
  127. img.logo {
  128. border: none;
  129. float:right;
  130. margin:0;
  131. padding:2px;
  132. }
  133.  
  134. /* sidebar */
  135.  
  136. div.sidebar {
  137. border:1px solid #fff;
  138. padding: 0 1em;
  139. margin: 0 0 1em 0;
  140. background: #333;
  141. }
  142.  
  143. /* printing */
  144.  
  145. @media print {
  146. div.header span, div.footer { display: none; }
  147. }
  148.  
  149. /* iPhone */
  150.  
  151. @media only screen and (max-device-width: 480px) {
  152. body { font-size: 200%; }
  153. }
  154.  
  155. /* iPad */
  156.  
  157. @media only screen and (min-device-width: 481px) and (max-device-width: 1024px) {
  158. body { }
  159. }
  160.  
  161. /* not checked */
  162.  
  163. div.journal h1 { font-size: large }
  164. dd, li { margin-bottom:0.5ex; }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement