vba.css 6.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255
  1. /* vBulletin archives style for iyagi by ssz */
  2. /* General */
  3. body {
  4. background: #EEEEEE;
  5. font-family: verdana, arial, sans-serif;
  6. font-size: 11px;
  7. }
  8. hr {
  9. visibility: hidden;
  10. display: none;
  11. }
  12. img[src*="./img/"] {
  13. width: 12px;
  14. }
  15. h2 {
  16. font-weight: bold;
  17. font-size: 20px;
  18. text-align: center;
  19. margin-top: -8px;
  20. }
  21. h2 a[href="#tbox"] {
  22. color: silver;
  23. }
  24. body > div:nth-last-child(1) {
  25. padding: 0 0 0 0 !important;
  26. font-style: normal !important;
  27. float: right;
  28. }
  29. body div:nth-last-child(1) a {
  30. color: black;
  31. }
  32. body div:nth-last-child(1) a:hover {
  33. color: red;
  34. }
  35. /* Thread list table */
  36. p table {
  37. font-size: 11px;
  38. border: 1px solid silver;
  39. position: absolute;
  40. right: 18px;
  41. top: 64px;
  42. }
  43. table {
  44. font-size: 11px;
  45. }
  46. th {
  47. background: #EEEEEE;
  48. }
  49. .thread .reply:nth-last-of-type(1) {
  50. border: none !important;
  51. padding: 0 0 0 0 !important;
  52. }
  53. /* Reply form table */
  54. .reply form table {
  55. border: 1px solid silver !important;
  56. }
  57. .reply form table tr:nth-of-type(1) td:nth-of-type(1) {
  58. background-color: #EEEEEE !important;
  59. color: black !important;
  60. padding: 4px !important;
  61. }
  62. .reply form table tr:nth-of-type(2) td:nth-of-type(1) {
  63. height: auto !important;
  64. width: auto !important;
  65. }
  66. .reply form table tr:nth-of-type(2) td:nth-of-type(1) input {
  67. width: 85% !important;
  68. }
  69. .reply form table tr:nth-of-type(2) td:nth-of-type(2) {
  70. width: 70px !important;
  71. }
  72. .reply form table tr:nth-of-type(2) td:nth-of-type(3) {
  73. width: 1px !important;
  74. }
  75. /* Thread creation form table */
  76. .front > form table {
  77. border: 1px solid silver !important;
  78. background-color: white !important;
  79. }
  80. .front > form table tr:nth-of-type(1) td:nth-of-type(1) {
  81. background-color: #EEEEEE !important;
  82. color: black !important;
  83. padding: 4px !important;
  84. }
  85. .front > form table tr:nth-of-type(2) td:nth-of-type(1) {
  86. width: 50px !important;
  87. }
  88. .front > form table tr:nth-of-type(2) td:nth-of-type(2) {
  89. width: auto !important;
  90. }
  91. .front > form table tr:nth-of-type(2) td:nth-of-type(2) input {
  92. width: 100% !important;
  93. }
  94. .front > form table tr:nth-of-type(3) td:nth-of-type(1) {
  95. width: 50px !important;
  96. }
  97. .front > form table tr:nth-of-type(3) td:nth-of-type(2) input {
  98. width: 100% !important;
  99. }
  100. .front > form table tr:nth-of-type(3) td:nth-of-type(3) {
  101. width: 0% !important;
  102. }
  103. .front > form table tr:nth-of-type(4) td:nth-of-type(1) textarea {
  104. min-width: 100% !important;
  105. }
  106. /* Both */
  107. table input {
  108. border: 1px solid grey !important;
  109. }
  110. input[type="submit"] {
  111. float: right;
  112. }
  113. form table tr td textarea {
  114. border: 1px solid silver !important;
  115. min-width: 100%;
  116. }
  117. /* Threads */
  118. .front > .thread {}
  119. .thread {
  120. background: white;
  121. padding: 16px;
  122. margin-bottom: 8px;
  123. border: 1px solid silver;
  124. }
  125. .thread > h3 {
  126. text-align: left;
  127. font-size: 10pt;
  128. font-weight: bold;
  129. margin-top: -4px;
  130. }
  131. .thread h3 a {
  132. color: black;
  133. text-decoration: none;
  134. }
  135. .thread h3 a:hover {
  136. color: red;
  137. text-decoration: none;
  138. }
  139. .thread > i {
  140. color: silver;
  141. }
  142. /* Posts */
  143. .reply {
  144. border: 1px solid silver;
  145. padding: 1px;
  146. margin-bottom: 16px;
  147. }
  148. div .title {
  149. padding: 4px;
  150. background: #EEEEEE;
  151. }
  152. div .comment {
  153. padding: 4px;
  154. background: #F9F9F9;
  155. }
  156. .bump, .sage {
  157. font-weight: bold;
  158. width: auto;
  159. }
  160. .sage {
  161. border-bottom: 1px dotted black;
  162. }
  163. .trip {
  164. font-style: italic;
  165. }
  166. .admin{
  167. color: #800020;
  168. font-weight: bold;
  169. }
  170. .quote {
  171. color: silver;
  172. }
  173. /* Other, partially taken from "0ch" */
  174. //@font-face {
  175. font-family: "mona";
  176. src: url("mona.tff");
  177. }
  178. .rmr {
  179. padding: 4px;
  180. max-width: 600px;
  181. border: 1px dotted #888;
  182. background-color: #ffc;
  183. font-style: italic;
  184. }
  185. .bl {
  186. display: inline;
  187. font-style: italic;
  188. }
  189. .bl > a {
  190. color: blue !important;
  191. }
  192. .bl > a:hover {
  193. color: red !important;
  194. }
  195. pre {
  196. max-width: 500px;
  197. font-size-adjust:none;
  198. background-color: #fff;
  199. border:1px solid black;
  200. white-space: pre;
  201. margin-left:5%
  202. }
  203. pre > hr {
  204. max-width: 500px;
  205. }
  206. .spoiler, .spoiler > .quote {
  207. color: black;
  208. background-color:black !important
  209. }
  210. .spoiler:hover, .spoiler:hover > .quote {
  211. color: white;
  212. background-color: black !important
  213. }
  214. .youtube {
  215. background-size: 480px 320px;
  216. background-position: center;
  217. background-repeat: no-repeat;
  218. position: relative;
  219. display: block;
  220. overflow: hidden;
  221. transition: all 200ms ease-out;
  222. cursor: pointer;
  223. margin:0 0 0 4%;
  224. }
  225. iframe {
  226. margin: 9px 0 0 4%;
  227. display:block;
  228. background-position:center;
  229. }
  230. .youtube .play {
  231. background: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAEAAAABACAYAAACqaXHeAAAERklEQVR4nOWbTWhcVRTHb1IJVoxGtNCNdal2JYJReC6GWuO83PM/59yUS3FRFARdFlwYP1CfiojQWt36sRCUurRIdVFXIn41lAoVdRGrG1M01YpKrWjiYmaSl8ybZJL3cd+YA//NLObd3++eO8x79z5jSq5Gw+8kov0AP8vMR5l1BtBZQM4B8ks75wCdZdYZZj5qLZ4hov2Nht9Z9vhKKSIaB/gI4M4w62KeAO6Mte4lYOq20FxrlqqOibhHmeWbvNC9ZfDX1mLae391aN6limO/gwgvAPJbWeAZuSDingdwXTBw7/0IsyaA/Fkh+KqOkD+YNfHej1QKD+y7iVlOhgLvFqFfNJvNGyuBJ+KDAF8MDd0tgS8y64OlgSdJMsysL4cG7SOHkyQZLhTee7+d2R2rAVy/S+Jd7/32ouBHAP4gNNRGQyTHc/84NhqNywZp5rvjjnnvt21aABFeCQ+RLwAf2hQ8s7sv9OCLk6AHNgQvIrvbfzKCD76g/O6cu7lf/iER/aQGgy448pExZmhdegAPhR9sObFWH1gT3lp7DaA/5bkIgJhZPgsNmz02novj+KqeApj1ubwXWe4kdyeznAgNvTpE/HQmvKqOMeuFogTUVQSRno+iaLRLAJF7uIgL9O4ubgL8aWgB7S44mNX+35YpICUiAvS9sBLkq1WzT+NFffl6AuoiApi6NT37h6sWkBIRZGkQ8YtLgyji6e1mBYTqCEBPG2Naz+0BWQgtoGoRgCzEsd9hAN1X5BfnFZASUfrSAFQNsyZ1FJASUVpHiLinDJG8U2cBZYogkrcNs5waBAGdstbeU9zdqpw0gPwwSAI6VUxHyFlDpOcHUUBBIuYNs14aZAE5RVwyzPr3/0EAEY0TyfGNjBWQvwZ+CTSbehfAH29mrID8bET0+0EUkAd8WYDOmqJ3ecsG30yr9wqRfm6Y+a1BEFDEjHfHvWmY9ck6CygHvBVr8Xhtb4ZE5HZA3y8DvBNA1TjnrmXWf+sioMwZX5V/VHXMGGMMoKdDCxCRvRWBdzKzdHEO+EisilbPyopHYqp6S9UCAsz4iojI7hUDAtyXVQgIDd6KnOoaWNkbI6FaPSuZGyMArsi7MZoloB4zviI/Nhr3X95jltwTRQmoIfgisy5ai+me67OI7fE4nrqjrqfK1t0eby0FPRB6oGVlchL3rgnfrq19RKbVBdhV9IOSwJmfmJi4vi/4ThERitwyCxVAFqydshuCX5awhQ9KtmuIWd8IDZED/nXT77rvVVv6sHRKwjYi91poqP7Dr+Y6JJ1VSZIMA3wkPNy6bX+o8Bcm0sXMdwM8Fxo0A3xORPaWBp6uPXsmbxCRD0NDL0dOANhVCXy6iAjMcjbcrMt3RITKwdMVRdFo+y5yvkL4eWZ+zHt/ZVD4dEVRNGotpst+dZZZH8k86lqn2pIvT/eqrNfn2xuyqYPZ8mv7s8pfn/8Pybm4TIjanscAAAAASUVORK5CYII=") no-repeat center center;
  232. background-size: 64px 64px;
  233. position: absolute;
  234. height: 100%;
  235. width: 100%;
  236. opacity: .8;
  237. filter: alpha(opacity=80);
  238. -webkit-transition: all 0.2s ease-out;
  239. -moz-transition: all 0.2s ease-out;
  240. -o-transition: all 0.2s ease-out;
  241. transition: all 0.2s ease-out;
  242. }
  243. .youtube .play:hover {
  244. opacity: 1;
  245. filter: alpha(opacity=100);
  246. }