The version of vichan running on lainchan.org
25'ten fazla konu seçemezsiniz Konular bir harf veya rakamla başlamalı, kısa çizgiler ('-') içerebilir ve en fazla 35 karakter uzunluğunda olabilir.

304 satır
5.1KB

  1. /**
  2. * dark.css
  3. * Stolen from circlepuller who stole it from derpcat
  4. */
  5. body
  6. {
  7. background: #1E1E1E;
  8. color: #999999;
  9. font-family: sans-serif;
  10. font-size: 11px;
  11. }
  12. span.quote
  13. {
  14. color:#B8D962;
  15. }
  16. @font-face
  17. {
  18. font-family: 'lain';
  19. src: url('./fonts/nrdyyh.woff') format('woff'),
  20. url('./fonts/tojcxo.TTF') format('truetype');
  21. }
  22. h1
  23. {
  24. font-family: 'lain', tahoma;
  25. letter-spacing: -2px;
  26. font-size: 20pt;
  27. text-align: center;
  28. color: #32DD72;
  29. }
  30. header div.subtitle
  31. {
  32. color: #32DD72;
  33. }
  34. div.title
  35. {
  36. color: #32DD72;
  37. font-family: Arial, Helvetica, sans-serif;
  38. }
  39. div.title p
  40. {
  41. font-size: 10px;
  42. }
  43. a:link, a:visited, p.intro a.email span.name
  44. {
  45. color: #CCCCCC;
  46. text-decoration: none;
  47. font-family: sans-serif;
  48. }
  49. a:link, a:visited, p.intro a.email span.name
  50. {
  51. -moz-transition: 0.15s text-shadow, 0.15s color;
  52. -webkit-transition: 0.15s text-shadow, 0.15s color;
  53. -khtml-transition: 0.15s text-shadow, 0.15s color;
  54. -o-transition: 0.15s text-shadow, 0.15s color;
  55. -ms-transition: 0.15s text-shadow, 0.15s color;
  56. transition: 0.15s text-shadow, 0.15s color;
  57. }
  58. input[type="text"], textarea
  59. {
  60. -moz-transition: 0.15s border-color;
  61. -webkit-transition: 0.15s border-color;
  62. -khtml-transition: 0.15s border-color;
  63. -o-transition: 0.15s border-color;
  64. -ms-transition: 0.15s border-color;
  65. transition: 0.15s border-color;
  66. }
  67. input[type="submit"]
  68. {
  69. -moz-transition: 0.15s border-color, 0.15s background-color, 0.15s color;
  70. -webkit-transition: 0.15s border-color, 0.15s background-color, 0.15s color;
  71. -khtml-transition: 0.15s border-color, 0.15s background-color, 0.15s color;
  72. -o-transition: 0.15s border-color, 0.15s background-color, 0.15s color;
  73. -ms-transition: 0.15s border-color, 0.15s background-color, 0.15s color;
  74. transition: 0.15s border-color, 0.15s background-color, 0.15s color;
  75. }
  76. a:link:hover, a:visited:hover
  77. {
  78. color: #32DD72;
  79. font-family: sans-serif;
  80. text-decoration: none;
  81. text-shadow: 0px 0px 5px #fff;
  82. }
  83. a.post_no
  84. {
  85. color: #AAA;
  86. text-decoration: none;
  87. }
  88. p.intro a.post_no:hover
  89. {
  90. color: #32DD72!important;
  91. }
  92. div.post.reply
  93. {
  94. background: #181818;
  95. border: #555555 0px solid;
  96. width:100%;
  97. }
  98. div.postcontainer
  99. {
  100. width:100%;
  101. }
  102. div.body
  103. {
  104. width:100%;
  105. }
  106. div.sidearrows
  107. {
  108. display:none;
  109. }
  110. div.post.reply.highlighted
  111. {
  112. background: #555;
  113. border: transparent 1px solid;
  114. }
  115. div.post.reply div.body a:link, div.post.reply div.body a:visited
  116. {
  117. color: #CCCCCC;
  118. }
  119. div.post.reply div.body a:link:hover, div.post.reply div.body a:visited:hover
  120. {
  121. color: #32DD72;
  122. }
  123. p.intro span.subject
  124. {
  125. font-size: 12px;
  126. font-family: sans-serif;
  127. color: #446655;
  128. font-weight: 800;
  129. }
  130. p.intro span.name
  131. {
  132. color: #32DD72;
  133. font-weight: 800;
  134. }
  135. p.intro a.capcode, p.intro a.nametag
  136. {
  137. color: magenta;
  138. margin-left: 0;
  139. }
  140. p.intro a.email, p.intro a.email span.name, p.intro a.email:hover, p.intro a.email:hover span.name
  141. {
  142. color: #32ddaf;
  143. }
  144. input[type="text"], textarea, select
  145. {
  146. background: #333333!important;
  147. color: #CCCCCC!important;
  148. border: #666666 1px solid!important;
  149. }
  150. input[type="password"]
  151. {
  152. background: #333333!important;
  153. color: #CCCCCC!important;
  154. border: #666666 1px solid!important;
  155. }
  156. form table tr th
  157. {
  158. background: #333333!important;
  159. color: #AAAAAA!important;
  160. border: #333333 1px solid!important;;
  161. }
  162. div.banner
  163. {
  164. background: #E04000;
  165. border: 1px solid hsl(17, 100%, 60%);
  166. color: #EEE;
  167. text-align: center;
  168. height: 15px;
  169. padding: 1px 1px 4px 1px;
  170. margin-left: auto;
  171. margin-right: auto;
  172. }
  173. div.banner a
  174. {
  175. color:#000;
  176. }
  177. input[type="submit"]
  178. {
  179. background: #333333;
  180. border: #666 1px solid;
  181. color: #CCCCCC;
  182. }
  183. input[type="submit"]:hover
  184. {
  185. background: #555;
  186. border: #888 1px solid;
  187. color: #32DD72;
  188. }
  189. input[type="text"]:focus, textarea:focus
  190. {
  191. border:#888 1px solid!important;
  192. }
  193. p.fileinfo a:hover
  194. {
  195. text-decoration: underline;
  196. }
  197. span.trip
  198. {
  199. color: #AAA;
  200. }
  201. .topbar
  202. {
  203. background: #333;
  204. border-bottom: 0px solid #666;
  205. widh:100%;
  206. }
  207. div.pages
  208. {
  209. color: #AAA;
  210. background: #333;
  211. border: #666 1px solid;
  212. font-family: sans-serif;
  213. font-size: 10pt;
  214. }
  215. div.pages a.selected
  216. {
  217. color: #CCC;
  218. }
  219. hr
  220. {
  221. height: 0px;
  222. border: #333 1px solid;
  223. }
  224. div.boardlist
  225. {
  226. color: #999;
  227. }
  228. div.ban
  229. {
  230. background-color: #1e1e1e;
  231. border: 1px solid #555;
  232. -moz-border-radius: 2px;
  233. -webkit-border-radius: 2px;
  234. border-radius: 2px;
  235. text-align: left!important;
  236. }
  237. div.ban h2
  238. {
  239. background: #333;
  240. color: #32DD72;
  241. padding: 3px 7px;
  242. font-size: 12pt;
  243. border-bottom: 1px solid #555;
  244. }
  245. div.ban h2:not(:nth-child(1))
  246. {
  247. border-top: 1px solid #555;
  248. }
  249. table.modlog tr th
  250. {
  251. background: #333;
  252. color: #AAA;
  253. }
  254. div.report
  255. {
  256. color: #666;
  257. }
  258. .pages, .board_image, input, .reply, form table th, textarea, a img, select, .banner
  259. {
  260. -webkit-border-radius: 2px;
  261. -khtml-border-radius: 2px;
  262. -moz-border-radius: 2px;
  263. -o-border-radius: 2px;
  264. -ms-border-radius: 2px;
  265. border-radius: 2px;
  266. }
  267. .blur
  268. {
  269. filter: blur(20px);
  270. -webkit-filter: blur(23px);
  271. -moz-filter: blur(23px);
  272. -o-filter: blur(23px);
  273. -ms-filter: blur(23px);
  274. filter: url(svg/blur.svg#blur);
  275. }
  276. /* options.js */
  277. #options_div
  278. {
  279. background: #333333;
  280. }
  281. .options_tab_icon
  282. {
  283. color: #AAAAAA;
  284. }
  285. .options_tab_icon.active
  286. {
  287. color: #FFFFFF;
  288. }