Advertisement
LumChron

Burning Six CSS

Sep 24th, 2019
124
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 5.01 KB | None | 0 0
  1. /* Color Scheme: links: #851; visited links: #542; background #aa8;
  2. Plus black, white, and #333 for headers */
  3.  
  4. body {
  5. font-family: "Droid Serif", "Times New Roman",Georgia,Times;
  6. color: #000;
  7. background-color: #aa8;
  8. margin:1em 2em;
  9. }
  10. @media print {
  11. body {
  12. background-color: white;
  13. font-size:12pt;
  14. }
  15. }
  16.  
  17. /* iPhone */
  18.  
  19. @media only screen and (max-device-width: 480px) {
  20. body { font-size: 200%; }
  21. }
  22.  
  23. /* iPad */
  24.  
  25. @media only screen and (min-device-width: 481px) and (max-device-width: 900px) {
  26. body { font-size: 150%; }
  27. textarea,input { font-size: 100%; }
  28. }
  29.  
  30.  
  31.  
  32. div.browse {
  33. min-height: 3em;
  34. }
  35. div.footer {
  36. clear:both;
  37. font-size: 90%;
  38. }
  39. form.tiny, form.tiny p {
  40. display:inline;
  41. white-space:nowrap;
  42. }
  43. form.tiny input {
  44. padding:0;
  45. width:10ex;
  46. font-size:10px;
  47. }
  48.  
  49. div.commentshown {
  50. padding-bottom: 1ex;
  51. padding-left: 2em;
  52. border-left: 2px solid black;
  53. font-size: smaller;
  54. }
  55. div.commenthidden { display:none; }
  56. div.commentshown { display:block; }
  57. /* comment pages with username, homepage, and email subscription */
  58. .comment span { display: block; }
  59. .comment span label, .comment span input {
  60. display: inline-block; width: 10em;
  61. }
  62.  
  63.  
  64. h1 {
  65. font-weight: bold;
  66. color: white;
  67. background-color: #333;
  68. width: 100%;
  69. font-size: 130%;
  70. padding: 0.2em;
  71. }
  72. h1 a:link, h1 a:visited {
  73. color: inherit;
  74. background-color: inherit;
  75. text-decoration: inherit;
  76. }
  77. div.journal h1 {
  78. font-size:large;
  79. background-color: #555;
  80. }
  81. h2 {
  82. font-weight: bold;
  83. color: white;
  84. background-color: #000;
  85. /* width: 98%; */
  86. font-size: 110%;
  87. padding: 0.2em;
  88. clear: both;
  89. }
  90. a:link {
  91. font-weight: bold;
  92. color: #851;
  93. background-color: inherit;
  94. }
  95. a:visited {
  96. font-weight: bold;
  97. color: #542;
  98. background-color: inherit;
  99. }
  100. a:active {
  101. font-weight: bold;
  102. color:#a41;
  103. background-color: inherit;
  104. }
  105.  
  106. /* images with links, captions, etc */
  107. div.image { display: inline; margin: 1em; font-size: 90%; text-align: center; }
  108. .left { float: left; margin-right: 1em; }
  109. .right { float: right; margin-left: 1em; }
  110. div.right .right { float: none; }
  111. div.left .left { float: none; }
  112. .caption { padding: 0 1em; }
  113. .license { font-size: small; }
  114. .aside {
  115. font-size: small;
  116. width: 30%;
  117. float: right;
  118. margin-left: 1em;
  119. margin-bottom: 1em;
  120. padding-left: 1em;
  121. }
  122. .narrow {
  123. width: 70%;
  124. }
  125.  
  126. a img { border: 1px solid #333; }
  127. .fit img { width: 80%; text-align: center; margin: 2em 8%; }
  128. .half img { width: 50%; height: 50%; text-align: center; margin: 2em 8%; }
  129. .noborder img { border: none; }
  130. .twenty img { max-width: 20em; }
  131.  
  132. em.underline { font-weight: bold; }
  133. .bar a { padding-right: 1em; }
  134. textarea { width:100%; }
  135. div.edit { padding-right: 1em; }
  136. img.logo {
  137. float: right;
  138. clear: right;
  139. border-style:none;
  140. margin-left: 1em;
  141. margin-bottom: 1ex;
  142. }
  143. div.diff { padding-left:5%; padding-right:5%; }
  144. div.old { background-color:#FFFFAF; }
  145. div.new { background-color:#CFFFCF; }
  146. div.message { background-color:#FEE; }
  147. table.history { border-style:none; }
  148. td.history { border-style:none; }
  149. span.result { font-size:larger; }
  150. span.info { font-size:smaller; font-style:italic; }
  151. div.rc hr { display: none; }
  152.  
  153. @media print {
  154. a, a:link, a:visited {
  155. color:#000;
  156. text-decoration:none;
  157. font-weight: normal;
  158. }
  159. h1 a, h2 a, h3 a, h4 a { font-style: normal; }
  160. a.edit, div.footer, form, span.gotobar, a.number span { display:none; }
  161. a[class="url number"]:after, a[class="inter number"]:after {
  162. content:"[" attr(href) "]";
  163. }
  164. a[class="local number"]:after { content:"[" attr(title) "]"; }
  165. img[smiley] { line-height: inherit; }
  166. }
  167.  
  168. /* Tables */
  169. table.user {
  170. margin: 1em 4em;
  171. padding: 0 1em;
  172. border-top: 1px solid black;
  173. border-bottom: 1px solid black;
  174. }
  175. table.user td, table.user th {
  176. border-style: none;
  177. padding:5px 10px;
  178. vertical-align: top;
  179. }
  180. table.user th { font-weight:bold; }
  181. table.user td.r { text-align:right; }
  182. table.user td.l { text-align:left; }
  183. table.user td.c { text-align:center; }
  184. table.user td.j { text-align:justify; }
  185. table.user td.mark { background-color:yellow; }
  186. @media print {
  187. table {
  188. font-size: 9pt;
  189. margin: 0;
  190. }
  191. table.user td, table.user th {
  192. padding: 0 1ex;
  193. }
  194. }
  195.  
  196. /* Help */
  197.  
  198. .edit table {
  199. font-size: small;
  200. }
  201.  
  202. /* Calendar */
  203. div.month { margin:0; padding:0; font-size:x-small; float:right; }
  204. div.content div.month { float:none; }
  205. div.year div.month { float:left; font-size:medium; padding:1ex; }
  206. div.month pre { margin:0; padding:0 0 0 1ex; }
  207. div.month a { text-decoration:none; font: inherit; }
  208. div.month span.title a { font: inherit; }
  209. /* no difference between a.exact and a.collection */
  210. div.month a.local { font-weight: bold; }
  211. div.month a.local:link { color: #562; }
  212. div.month a.local:visited { color: #542; }
  213. div.month a.today { background-color: #faa; }
  214. div.month span.title a.local { font-weight: normal; color: #842; }
  215. @media print {
  216. div.month { display: none; }
  217. div.year div.month { display: block; }
  218. div.year div.month a { display: inline; }
  219. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement