The version of vichan running on lainchan.org
Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.

72 строки
1.5KB

  1. /**
  2. * stripes.css
  3. * for vichan by klaczy
  4. */
  5. body {
  6. background: url('img/stripes_bg.png');
  7. color: #BBB;
  8. font-family: 'Hevletica', sans-serif;
  9. font-size: 12px;
  10. }
  11. div.boardlist:nth-child(1):hover {
  12. background: #222 !important;
  13. }
  14. div.boardlist:nth-child(1) .boardlist {
  15. background: #222 !important;
  16. }
  17. div.reply, div.pages {
  18. background: -moz-linear-gradient(bottom, #323232 40%, #2E2E2E 75%) !important;
  19. background: linear-gradient(to top, #323232 40%, #2E2E2E 75%) !important;
  20. border: 1px solid #2D2D2D !important;
  21. box-shadow: 0px 0px 10px #2C2C2C;
  22. color: #BBB !important;
  23. }
  24. .reply {
  25. margin-top: 0.5em !important;
  26. }
  27. .body a, a:hover, a:visited:hover {
  28. color: #FF6666;
  29. }
  30. table th { background: none !important }
  31. a, a:visited {
  32. color: #BBB;
  33. }
  34. hr {
  35. border: 0 !important;
  36. height: 1px !important;
  37. background-color: #AAA !important;
  38. margin: 1.5em 0 1.5em !important;
  39. }
  40. .name, .body a {
  41. color: #FF6666 !important;
  42. }
  43. .subject, h1, .subtitle, .selected {
  44. color: #FF6699 !important;
  45. }
  46. .capcode {
  47. color: #FF66CC !important;
  48. }
  49. input, textarea {
  50. background: url('img/stripes_textarea.png');
  51. border: 1px #CCC;
  52. border-radius: 3px;
  53. padding: 3px;
  54. }
  55. input[type="text"] { width: 200px }
  56. textarea {
  57. background-size: 100% 100%;
  58. background-color: #FCFCFC;
  59. background-repeat: repeat-x;
  60. width: 100%;
  61. height: 200px;
  62. }
  63. input[type="submit"] {
  64. border: 1px solid rgb(204, 204, 204);
  65. background: url('img/stripes_submit.png');
  66. height: 23px;
  67. margin-left: 0.5em;
  68. }
  69. .delete {
  70. margin-top: 0.5em;
  71. }