Oppaitime's version of Gazelle
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

style.css 39KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232
  1. /* latin-ext */
  2. @font-face {
  3. font-family: 'Open Sans';
  4. font-style: normal;
  5. font-weight: 400;
  6. src: local('Open Sans'), local('OpenSans'), url(../fonts/OpenSans.ttf) format('truetype');
  7. }
  8. /* latin */
  9. @font-face {
  10. font-family: 'Open Sans';
  11. font-style: normal;
  12. font-weight: 600;
  13. src: local('Open Sans Semibold'), local('OpenSans-Semibold'), url(../fonts/OpenSans-Semibold.ttf) format('truetype');
  14. }
  15. * {
  16. margin: 0;
  17. padding: 0
  18. }
  19. .cats_anime, .cats_movies, .cats_manga, .cats_games, .cats_other {
  20. width: 38px!important;
  21. height: 38px!important;
  22. line-height: 38px;
  23. }
  24. .group .cats_anime:after, .group .cats_movies:after,
  25. .group .cats_manga:after, .group .cats_games:after,
  26. .group .cats_other:after {
  27. color: black!important;
  28. }
  29. .cats_anime:after {
  30. content: "ANM";
  31. color: #3EACA7;
  32. font-size: 16px;
  33. }
  34. .group .cats_anime { background-color: #3EACA7; }
  35. .cats_movies:after {
  36. content: "JAV";
  37. color: #1D818E;
  38. font-size: 20px;
  39. }
  40. .group .cats_movies { background-color: #1D818E; }
  41. .cats_manga:after {
  42. content: "MNG";
  43. color: #88C796;
  44. font-size: 16px;
  45. }
  46. .group .cats_manga { background-color: #88C796; }
  47. .cats_games:after {
  48. content: "GAM";
  49. color: #4DC593;
  50. font-size: 16px;
  51. }
  52. .group .cats_games { background-color: #4DC593; }
  53. .cats_other:after {
  54. content: "OTH";
  55. color: #0D5968;
  56. font-size: 19px;
  57. }
  58. .group .cats_other { background-color: #0D5968; }
  59. body {
  60. width: 100%;
  61. font-family: 'Open Sans',Helvetica,Arial,Tahoma,sans-serif;
  62. font-size: 12px;
  63. color: #c6c9c9;
  64. background-color: #23252a
  65. }
  66. .linkbox .brackets:after, .linkbox .brackets:before {
  67. display: none;
  68. }
  69. a {
  70. text-decoration: none;
  71. border: none;
  72. color: #f0f0f0;
  73. }
  74. a:hover, .torrent_table .group a:hover {
  75. color: #92d4a0
  76. }
  77. b,strong {
  78. font-weight: 600
  79. }
  80. ::selection, ::-moz-selection {
  81. background: #3eaca7
  82. }
  83. h1,h2,h3,h4,h5,h6 {
  84. font-weight: 400;
  85. color: #f0f0f0;
  86. margin: 8px 0;
  87. }
  88. h1,h2 {
  89. font-size: 23px;
  90. }
  91. #torrents .header h2 {
  92. text-align: center;
  93. }
  94. h3,h4 {
  95. font-size: 18px;
  96. }
  97. h1 a, h2 a, h3 a, h4 a, h5 a, h6 a {
  98. color: #83e4a6;
  99. }
  100. #userform #settings_sections h2 {
  101. font-size: 12px;
  102. line-height: 1.6;
  103. }
  104. #userform #settings_sections h2 a, .rule_short {
  105. color: #f0f0f0;
  106. }
  107. li {
  108. margin: 5px 15px;
  109. }
  110. p {
  111. margin: 10px 5px
  112. }
  113. input {
  114. border: 1px solid #5b5e64;
  115. background-color: #373a42;
  116. padding: 10px 9px;
  117. color: #fff
  118. }
  119. button,input[type=button],input[type=submit] {
  120. font-family: 'Open Sans',Helvetica,Arial,Tahoma,sans-serif;
  121. background-color: #50aca7;
  122. color: #fff
  123. }
  124. button:hover,input[type=button]:hover,input[type=submit]:hover {
  125. background-color: #317f8e
  126. }
  127. button:focus,input[type=button]:focus,input[type=submit]:focus {
  128. background-color: #2f707c
  129. }
  130. .spoilerButton {
  131. max-width: 604px;
  132. }
  133. ::-webkit-input-placeholder {
  134. font-family: 'Open Sans',Helvetica,Arial,Tahoma,sans-serif;
  135. }
  136. :-moz-placeholder {
  137. font-family: 'Open Sans',Helvetica,Arial,Tahoma,sans-serif
  138. }
  139. ::-moz-placeholder {
  140. font-family: 'Open Sans',Helvetica,Arial,Tahoma,sans-serif
  141. }
  142. :-ms-input-placeholder {
  143. font-family: 'Open Sans',Helvetica,Arial,Tahoma,sans-serif
  144. }
  145. select {
  146. background-color: #373a42;
  147. border: 1px solid #5b5e64;
  148. color: #fff;
  149. font-family: 'Open Sans',Helvetica,Arial,Tahoma,sans-serif;
  150. outline: 0
  151. }
  152. textarea {
  153. background-color: #373a42;
  154. border: 1px solid #5b5e64;
  155. color: #fff;
  156. font-family: 'Open Sans',Helvetica,Arial,Tahoma,sans-serif;
  157. font-size: 1.1em;
  158. padding: 2px 3px;
  159. margin: 4px 0px;
  160. }
  161. span.size1 {
  162. font-size: .75em
  163. }
  164. span.size2 {
  165. font-size: 1em
  166. }
  167. span.size3 {
  168. font-size: 1.25em
  169. }
  170. span.size4 {
  171. font-size: 1.5em
  172. }
  173. span.size5 {
  174. font-size: 1.75em
  175. }
  176. span.size6 {
  177. font-size: 2em
  178. }
  179. span.size7 {
  180. font-size: 2.25em
  181. }
  182. span.size8 {
  183. font-size: 2.5em
  184. }
  185. span.size9 {
  186. font-size: 2.75em
  187. }
  188. span.size10 {
  189. font-size: 3em
  190. }
  191. ul.thin {
  192. margin: 0 0 0 25px;
  193. padding: 0
  194. }
  195. ul.thin li {
  196. margin: 0;
  197. padding: 0
  198. }
  199. #wrapper {
  200. padding: 0
  201. }
  202. #header {
  203. width: 900px;
  204. position: relative
  205. }
  206. #content {
  207. width: 900px;
  208. overflow: hidden
  209. }
  210. #footer {
  211. margin-top: 2px;
  212. padding: 10px;
  213. text-align: center
  214. }
  215. .center {
  216. text-align: center
  217. }
  218. .min_padding {
  219. margin: 0;
  220. padding: 0
  221. }
  222. p.min_padding {
  223. margin: 2px 0
  224. }
  225. .vertical_space {
  226. margin-bottom: 2px!important
  227. }
  228. .box {
  229. background-color: #2c2f36!important;
  230. margin-bottom: 8px;
  231. }
  232. .box_addartists .body, .box_addtag .body {
  233. padding: 10px;
  234. }
  235. .pad h3,.pad h4,.padbox h3,.padbox h4 {
  236. margin-top: 0;
  237. padding-top: 0
  238. }
  239. .sidebar {
  240. float: right;
  241. width: 244px;
  242. height: 100%
  243. }
  244. .sidebar .box .pad form {
  245. padding-bottom: 20px;
  246. }
  247. .body {
  248. background-color: #2c2f36;
  249. padding: 5px 10px 10px 10px;
  250. }
  251. .main_column {
  252. width: 646px;
  253. float: left
  254. }
  255. #logo {
  256. width: 900px;
  257. height: 60px;
  258. background-position: 0 12px;
  259. background-repeat: no-repeat;
  260. }
  261. #logo a {
  262. border: none;
  263. width: 230px;
  264. height: 60px;
  265. display: block
  266. }
  267. #logo a::before {
  268. content: "Oppaitime";
  269. font-size: 40px;
  270. line-height: 56px;
  271. font-weight: 100;
  272. font-family: sans-serif;
  273. }
  274. .nav_dropdown > div {
  275. position: absolute;
  276. width: 135.56px;
  277. text-align: center;
  278. background: #509599;
  279. margin-top: 50px;
  280. z-index: 99999;
  281. left: 0;
  282. }
  283. #menu > ul > .nav_dropdown:hover {
  284. background-color: #509599;
  285. }
  286. #menu > ul > .nav_dropdown > div > a:hover {
  287. color: #E9E9E9;
  288. }
  289. #nav_links {
  290. max-width: 40px;
  291. }
  292. .nav_dropdown > div > a {
  293. display: none;
  294. color: white;
  295. height: 50px;
  296. line-height: 50px;
  297. }
  298. #nav_links > #links_menu {
  299. margin-left: -95.56px;
  300. }
  301. .nav_dropdown:hover > div > a {
  302. display: block;
  303. }
  304. #menu > ul > li > a:hover,
  305. .nav_dropdown:hover > div > a:hover {
  306. background-color: rgba(255,255,255,0.2);
  307. }
  308. #userinfo {
  309. position: absolute;
  310. top: 10px;
  311. right: 0;
  312. z-index: 50;
  313. text-align: right;
  314. }
  315. #userinfo > ul {
  316. height: 17px;
  317. }
  318. #userinfo ul li {
  319. display: inline-block;
  320. line-height: 20px;
  321. vertical-align: middle;
  322. margin: 0 .1em;
  323. padding: 2px
  324. }
  325. #userinfo_major > li, #userinfo_stats > li, .linkbox .brackets {
  326. margin-left: 8px;
  327. }
  328. #userinfo_minor > li, #userinfo_minor > li > span {
  329. float: right;
  330. }
  331. #userinfo_minor > li > ul {
  332. display: none;
  333. background: #23252A;
  334. padding: 6px 10px;
  335. margin-top: 26px;
  336. }
  337. #userinfo_minor > li > ul > li {
  338. display: block;
  339. }
  340. #userinfo_stats {
  341. color: #abd6ad;
  342. width: auto;
  343. z-index: 1001
  344. }
  345. #userinfo_stats a:hover {
  346. text-decoration: underline;
  347. }
  348. #searchbutton,.hide {
  349. display: none;
  350. }
  351. #userinfo_stats .stat,#userinfo_stats a,.colhead_dark a {
  352. color: #fff;
  353. }
  354. #menu {
  355. height: 50px;
  356. border-radius: 5px 5px 0 0;
  357. }
  358. #menu > ul {
  359. display: flex;
  360. }
  361. #menu > ul > li {
  362. position: relative;
  363. list-style: none;
  364. display: flex;
  365. flex: 1 1 90px;
  366. margin: 0;
  367. }
  368. #menu > ul > li > a {
  369. display: inline-block;
  370. box-sizing: border-box;
  371. width: 100%;
  372. height: 50px;
  373. line-height: 50px;
  374. text-align: center;
  375. vertical-align: middle;
  376. color: #FFF;
  377. text-decoration: none;
  378. overflow: hidden;
  379. white-space: nowrap;
  380. }
  381. #menu > ul > li:nth-of-type(1),
  382. #menu > ul > li:nth-of-type(1) > a {
  383. border-radius: 5px 0 0 0;
  384. }
  385. #menu > ul > li:nth-of-type(10),
  386. #menu > ul > li:nth-of-type(10) > a {
  387. border-radius: 0 5px 0 0;
  388. }
  389. #menu > ul > li:nth-of-type(1) {
  390. background-color: #80af8a;
  391. }
  392. #menu > ul > li:nth-of-type(2) {
  393. background-color: #78aa86;
  394. }
  395. #menu > ul > li:nth-of-type(3) {
  396. background-color: #6fa585;
  397. }
  398. #menu > ul > li:nth-of-type(4) {
  399. background-color: #659f82;
  400. }
  401. #menu > ul > li:nth-of-type(5) {
  402. background-color: #58977f;
  403. }
  404. #menu > ul > li:nth-of-type(6) {
  405. background-color: #4b907f;
  406. }
  407. #menu > ul > li:nth-of-type(7) {
  408. background-color: #3d8a81;
  409. }
  410. #menu > ul > li:nth-of-type(8) {
  411. background-color: #2e8180;
  412. }
  413. #menu > ul > li:nth-of-type(9) {
  414. background-color: #247a80;
  415. }
  416. #menu > ul > li:nth-of-type(10) {
  417. background-color: #1e7682;
  418. border-radius: 0 5px 0 0;
  419. }
  420. .alertbar {
  421. background-color: #4b907f;
  422. text-align: center;
  423. color: #fff;
  424. width: 900px;
  425. height: 18px;
  426. margin: 2px 0;
  427. padding: 9px 0;
  428. vertical-align: middle
  429. }
  430. .alertbar.error {
  431. background-color: #c73f3f;
  432. }
  433. .alertbar.warning {
  434. background-color: #c58b09;
  435. }
  436. .alertbar a {
  437. display: inline-block;
  438. position: relative;
  439. left: 0;
  440. height: 18px;
  441. color: #FFF;
  442. text-decoration: underline
  443. }
  444. .alertbar.modbar > a {
  445. margin: 0 5px;
  446. }
  447. .torrent_table .group a, .ui-state-hover, a.ui-state-hover, li.ui-state-hover {
  448. color: #FFF;
  449. }
  450. .alertbar a:hover,.tags a:hover {
  451. color: #fff;
  452. text-decoration: none;
  453. }
  454. .alertbar a[href="news.php"] {
  455. background: linear-gradient(#045362,#0d5968);
  456. }
  457. .alertbar #del_announce {
  458. left: 432px;
  459. top: -45px;
  460. }
  461. #alerts.countdown_wrapper .alertbar {
  462. color: #fff;
  463. }
  464. .alertbar[style="border:1px solid #360;background-color:#120;margin-bottom:3px;"] {
  465. color: #fff;
  466. border: none;
  467. margin-bottom: 2px;
  468. height: 36px;
  469. }
  470. #searchbars {
  471. box-sizing: border-box;
  472. width: 900px;
  473. height: 50px;
  474. padding: 8px 0;
  475. background: #3b3f47;
  476. margin-bottom: 2px;
  477. display: flex;
  478. }
  479. #searchbars > .search_form {
  480. flex: 1 1 auto;
  481. text-align: center;
  482. }
  483. #searchbars input {
  484. box-sizing: border-box;
  485. width: 135px;
  486. height: 34px;
  487. border: none;
  488. border-radius: 2.5px;
  489. background-color: #2B2D33;
  490. padding: 7px 11px 7px 8px;
  491. color: #c6c9c9;
  492. font-size: 12px;
  493. }
  494. #searchbars ul {
  495. margin: 0;
  496. padding: 0;
  497. list-style: none;
  498. display: block;
  499. }
  500. #searchbars ul li {
  501. display: inline;
  502. float: left;
  503. margin: 0 7px 0 0;
  504. position: relative;
  505. list-style: none;
  506. }
  507. #searchbars ul li:first-child {
  508. margin-left: 48px;
  509. }
  510. #searchbars ul li form {
  511. display: inline;
  512. margin: 0;
  513. }
  514. #settings_sections {
  515. padding-bottom: 10px;
  516. padding: 0px;
  517. }
  518. #settings_sections > ul.nobullet {
  519. /*padding: 0px 10px 10px;*/
  520. }
  521. .newmem {
  522. background-color: #222;
  523. text-align: center;
  524. font-size: .95em;
  525. margin: 0 auto;
  526. padding: 5px;
  527. }
  528. #cat-selector ul li {
  529. display: inline;
  530. width: 12em;
  531. height: 1em;
  532. float: left;
  533. }
  534. div.contenth textarea {
  535. background-color: #373a42;
  536. border: 1px solid #5b5e64;
  537. color: #fff;
  538. font-family: 'Open Sans',Helvetica,Arial,Tahoma,sans-serif;
  539. font-size: 1.1em;
  540. padding: 2px 3px
  541. }
  542. div.linkbox {
  543. text-align: center;
  544. padding: 5px
  545. }
  546. .linkbox > strong {
  547. color: #83e4a6;
  548. }
  549. #banner {
  550. width: 900px
  551. }
  552. #torrents #content .thin h2 a img {
  553. width: 900px;
  554. margin-top: -5px
  555. }
  556. #torrents .sidebar table.box {
  557. font-size: 1em;
  558. margin-top: 2px;
  559. width: 252px;
  560. padding: 0;
  561. }
  562. #torrents .main_column .box.pad {
  563. background-color: #23252a;
  564. padding-top: 10px;
  565. }
  566. input[value="Make Default"] {
  567. margin-left: -.6em;
  568. }
  569. .ui-menu .ui-menu-item a {
  570. padding: 5px 9px;
  571. background: #085565;
  572. }
  573. .ui-state-focus,.ui-state-hover,.ui-widget-content .ui-state-focus,.ui-widget-content .ui-state-hover,.ui-widget-header .ui-state-focus,.ui-widget-header .ui-state-hover {
  574. background: #085565;
  575. border: none;
  576. }
  577. #ui-active-menuitem {
  578. background: #0B4A57;
  579. margin: 0;
  580. }
  581. .ui-widget {
  582. font-family: 'Open Sans',Helvetica,Arial,Tahoma,sans-serif;
  583. }
  584. .ui-widget-overlay {
  585. background: #23252a;
  586. opacity: .5;
  587. }
  588. .ui-widget-content {
  589. border: none!important;
  590. background: #055363!important;
  591. color: #fff!important;
  592. padding: 0!important;
  593. }
  594. .ui-widget-header {
  595. background: none!important;
  596. border: none!important;
  597. }
  598. .ui-state-default {
  599. background: #17191c!important;
  600. border: none!important;
  601. width: 48px!important;
  602. height: 36px!important;
  603. margin: 1px!important;
  604. }
  605. .ui-state-default a {
  606. margin-left: 3px!important;
  607. margin-top: 4px!important;
  608. }
  609. .ui-state-active,.ui-tabs-selected,.ui-widget-content .ui-state-active,.ui-widget-header .ui-state-active {
  610. background: #2c2f36!important;
  611. color: #fff;
  612. margin: 1px!important;
  613. }
  614. .ui-state-hover,.ui-widget-content .ui-state-hover,.ui-widget-header .ui-state-hover {
  615. background: #222429!important;
  616. color: #fff;
  617. }
  618. .ui-tabs {
  619. width: 636px!important;
  620. font-size: 1.1em!important;
  621. background-color: #2c2f36!important;
  622. }
  623. .ui-tabs .ui-tabs-panel {
  624. background-color: #2c2f36!important;
  625. }
  626. .ui-tabs-nav {
  627. width: 48px!important;
  628. margin-top: -8px!important;
  629. margin-bottom: -10px!important;
  630. margin-left: -1px!important;
  631. }
  632. .ui-tabs-panel {
  633. width: 564px!important;
  634. }
  635. .ui-corner-all {
  636. -moz-border-radius: 0!important;
  637. -webkit-border-radius: 0!important;
  638. border-radius: 0!important;
  639. }
  640. .ui-corner-left {
  641. border-top-left-radius: 0!important;
  642. border-bottom-left-radius: 0!important;
  643. }
  644. .ui-autocomplete-loading {
  645. background-color: #2c2f36!important;
  646. background-image: none!important;
  647. }
  648. .ui-dialog-titlebar.ui-widget-header.ui-corner-all.ui-helper-clearfix {
  649. background-color: #2c2f36!important;
  650. }
  651. #recommend td[width="1%"] {
  652. color: transparent;
  653. }
  654. .welcome {
  655. font-size: 1em;
  656. background-color: #282828;
  657. border: 1px solid #303030;
  658. }
  659. .b1h,.b2bh,.b2h,.b3bh,.b3h,.b4bh,.b4h,.contenth {
  660. background: none!important;
  661. }
  662. .b1bh,.b1h,.b2bh,.b2h,.b3bh,.b3h,.b4bh,.b4h {
  663. background: #fefefe;
  664. border-left: 0 solid #aaa!important;
  665. border-right: 0 solid #aaa!important;
  666. height: 2px;
  667. margin: 0 1px;
  668. }
  669. .contenth {
  670. border-left: 0 hidden!important;
  671. border-right: 0 hidden!important;
  672. color: #fff!important;
  673. }
  674. .body, .head, .pad {
  675. padding: 12px;
  676. }
  677. .head {
  678. background: #52555c;
  679. box-sizing: border-box;
  680. }
  681. #reseed_box {
  682. padding-bottom: 0;
  683. }
  684. #reseed_box .sign {
  685. text-align: left;
  686. }
  687. #reseed_box #swapreseed {
  688. color: #85878F;
  689. position: relative;
  690. left: 468px;
  691. }
  692. #reseed_box #swapreseed:hover {
  693. color: #92d4a0;
  694. }
  695. #reseed_box .head {
  696. margin-bottom: 2px!important;
  697. }
  698. .tags {
  699. font-style: italic;
  700. padding: 0 0 0 20px;
  701. }
  702. .tags a {
  703. color: #7e7e7e;
  704. }
  705. ul.nobullet {
  706. padding-bottom: 2px;
  707. }
  708. ul.nobullet, ul.nobullet li {
  709. list-style-type: none;
  710. }
  711. table {
  712. width: 100%;
  713. border-collapse: collapse
  714. }
  715. td {
  716. padding: 5px
  717. }
  718. td:first-child {
  719. padding-left: 12px;
  720. }
  721. td:last-child {
  722. padding-right: 12px;
  723. }
  724. td.tdleft {
  725. text-align: left;
  726. padding: 5px
  727. }
  728. td.tdcenter {
  729. text-align: center;
  730. padding: 5px
  731. }
  732. td.tdright {
  733. text-align: right;
  734. padding: 5px
  735. }
  736. .forum_group_header {
  737. background-color: #373a42!important;
  738. color: #fff;
  739. font-weight: 300;
  740. margin-top: 2px
  741. }
  742. .colhead {
  743. background: #565961;
  744. font-weight: 300;
  745. color: #fff
  746. }
  747. .colhead td, .colhead_dark td, td.colhead {
  748. padding-top: 12px;
  749. padding-bottom: 12px;
  750. }
  751. .colhead_dark {
  752. background: linear-gradient(#52555c,#585b62);
  753. color: #fff;
  754. vertical-align: middle
  755. }
  756. tbody .colhead_dark {
  757. background: linear-gradient(#52555c,#585b62);
  758. color: #fff!important;
  759. vertical-align: middle
  760. }
  761. ul.navigation {
  762. background-color: #565961!important;
  763. color: #fff;
  764. text-align: center;
  765. list-style: none;
  766. font-weight: 300!important;
  767. padding: 10px!important
  768. }
  769. ul.navigation li {
  770. display: inline;
  771. padding: 0!important;
  772. margin-right: -2px!important
  773. }
  774. ul.navigation a {
  775. color: #fff;
  776. text-decoration: none;
  777. padding: 10px 20px!important
  778. }
  779. ul.navigation a:hover {
  780. color: #fff!important;
  781. background-color: #2f7e8c!important
  782. }
  783. ul.navigation a:focus {
  784. color: #fff!important;
  785. background-color: #2b6d79!important;
  786. outline: 0
  787. }
  788. ul.navigation a.selected {
  789. color: #fff!important;
  790. background-color: #085565!important
  791. }
  792. .scroll .panel {
  793. background-color: #2c2f36!important
  794. }
  795. .scroll .panel tr {
  796. border: none
  797. }
  798. .box.tvshows .snatches+.pad {
  799. padding: 0
  800. }
  801. .leftbar {
  802. width: 86px!important;
  803. padding: 0 10px 10px!important
  804. }
  805. .leftbar img {
  806. width: 106px;
  807. margin-left: -10px
  808. }
  809. .midbar {
  810. margin-left: 108px!important
  811. }
  812. .midbar .box {
  813. padding: 10px!important
  814. }
  815. .midbar .head {
  816. width: 772px
  817. }
  818. .midbar .box.info>div {
  819. margin-bottom: 10px
  820. }
  821. .midbar .box.usermenu {
  822. padding: 0!important;
  823. margin-bottom: 2px!important
  824. }
  825. .password_strength_bg {
  826. background-color: #2c2f36!important;
  827. width: 289px!important
  828. }
  829. .password_strength_container {
  830. width: 289px!important;
  831. padding: 5px!important
  832. }
  833. .password_strength {
  834. width: 289px!important
  835. }
  836. td.label {
  837. font-weight: 300;
  838. text-align: right;
  839. width: 180px
  840. }
  841. .filter_torrents td.label {
  842. width: 260px;
  843. }
  844. table.slice {
  845. margin-top: -1px
  846. }
  847. .error_message {
  848. border: 1px solid #666;
  849. background-color: #AF2525;
  850. text-align: center;
  851. color: #FFF;
  852. padding: 3px 0
  853. }
  854. .save_message {
  855. margin-top: 2px;
  856. background-color: #93d4a2;
  857. text-align: center;
  858. color: #fff;
  859. padding: 10px
  860. }
  861. .elem_error {
  862. border: 3px solid #B00D0D
  863. }
  864. ul.stats li {
  865. padding: 0 0 1px
  866. }
  867. ul.stats tr {
  868. border: none
  869. }
  870. ul.poll li {
  871. margin: 0;
  872. padding: 0 0 0 10px
  873. }
  874. ul.poll li.graph {
  875. margin-bottom: 3px;
  876. padding-left: 20px
  877. }
  878. span.center_poll {
  879. background: #565960;
  880. border-radius: 3px;
  881. display: inline-block;
  882. height: 8px;
  883. min-width: 8px;
  884. }
  885. .show_torrents_link {
  886. border: none;
  887. width: 28px;
  888. height: 28px;
  889. display: block
  890. }
  891. #series .box .body img {
  892. margin: -10px;
  893. margin-top: -6px!important;
  894. width: 646px;
  895. height: 100%
  896. }
  897. #series .sidebar .box .nobullet {
  898. text-align: center
  899. }
  900. #series .sidebar .box .stats {
  901. text-align: initial!important
  902. }
  903. .rating {
  904. background: url(images/hover-rating.png) 0 -32px repeat-x!important
  905. }
  906. .rating-bg {
  907. background: url(images/hover-rating.png) top left repeat-x!important
  908. }
  909. .torrent_table tr {
  910. vertical-align: top
  911. }
  912. .torrent_table tbody .pad>td,.torrent_table tbody>.pad {
  913. padding: 0
  914. }
  915. .colhead .sign,.colhead_dark .sign {
  916. vertical-align: middle;
  917. text-align: right;
  918. font-size: 1.2em;
  919. font-weight: 300
  920. }
  921. .torrent_table tr.group_torrent.first {
  922. border-top: 3px solid #565960
  923. }
  924. .torrent_table tr.group_torrent a:hover span {
  925. color: #92d4a0!important
  926. }
  927. #series .main_column .box,#series .main_column table.border {
  928. margin-top: 2px
  929. }
  930. .season {
  931. color: #ff2419
  932. }
  933. .episode {
  934. color: #00aeef
  935. }
  936. .torrent_table .colhead_dark {
  937. background-color: #55585f;
  938. height: 36px!important;
  939. vertical-align: middle!important
  940. }
  941. .torrent_table .group {
  942. background-color: #2c2f36
  943. }
  944. .torrent_table div.tags {
  945. font-weight: 400
  946. }
  947. .torrent_table tr .center {
  948. vertical-align: middle;
  949. text-align: center
  950. }
  951. .torrent_table tr.group_torrent td a span {
  952. float: left;
  953. white-space: pre
  954. }
  955. .torrent_table tr.group_torrent td {
  956. padding: 8px
  957. }
  958. .torrent_table tr.group_torrent .group.discog {
  959. padding: 8px 10px
  960. }
  961. .torrent_table tr.group_torrent .group.discog .episode,.torrent_table tr.group_torrent .group.discog b {
  962. color: #37a9a4!important
  963. }
  964. .torrent_table tr.group_torrent .group.discog .episode:hover {
  965. color: #fff!important
  966. }
  967. .torrent_table tr.group_torrent .group.discog .season {
  968. color: #92d4a0!important
  969. }
  970. .torrent_table tr.group_torrent .group.discog .season:hover {
  971. color: #fff!important
  972. }
  973. .torrent span, .group span {
  974. font-weight: 400;
  975. float: right
  976. }
  977. .torrent span img {
  978. vertical-align: text-top
  979. }
  980. .nobr {
  981. white-space: nowrap
  982. }
  983. #collages .sign,#torrents .sign {
  984. padding: 5px;
  985. position: relative;
  986. left: -5px
  987. }
  988. .filter_torrents {
  989. width: 900px
  990. }
  991. .filter_torrents>.box {
  992. margin-top: 2px
  993. }
  994. .filter_torrents>.box.pad.center {
  995. margin-top: -48px;
  996. margin-bottom: 10px
  997. }
  998. .filter_torrents .box.pad .cat_list {
  999. position: relative;
  1000. left: -12px;
  1001. width: 900px
  1002. }
  1003. .filter_torrents .box.pad .cat_list tbody tr td input[type=checkbox][name="filter_cat[1]"],.filter_torrents .box.pad .cat_list tbody tr td label[for=cat_1] {
  1004. position: relative;
  1005. left: 376px
  1006. }
  1007. .filter_torrents .box.pad .cat_list#taglist td {
  1008. background-color: #373a42!important
  1009. }
  1010. .filter_torrents .box.pad .cat_list#taglist tr {
  1011. border-bottom: none
  1012. }
  1013. .filter_torrents .box.pad .cat_list td[width="12.5%"] {
  1014. padding-left: 17px
  1015. }
  1016. .filter_torrents .box.pad .cat_list td.label {
  1017. padding-right: 17px
  1018. }
  1019. .filter_torrents .box.pad .cat_list[width="100%"] td {
  1020. background-color: #373a42!important
  1021. }
  1022. .filter_torrents .country_list {
  1023. position: relative;
  1024. left: -12px;
  1025. width: 900px
  1026. }
  1027. .filter_torrents .country_list td {
  1028. padding-left: 12px;
  1029. background-color: #373a42!important
  1030. }
  1031. .filter_torrents .country_list tr {
  1032. border-bottom: none
  1033. }
  1034. #bonus table[style="width:100%"] td,#bonus table[style="width:100%"] tr {
  1035. padding: 10px!important;
  1036. border-color: #23252a;
  1037. border-style: solid;
  1038. border-width: 2px
  1039. }
  1040. .forum_post.forum_unread {
  1041. border-top: 2px solid #c7fada;
  1042. }
  1043. .forum_post.staff_post.forum_unread {
  1044. border-top: 2px solid #fac7df;
  1045. }
  1046. .forum_post.staff_post .colhead_dark {
  1047. background: #634852;
  1048. }
  1049. .forum_post.sticky_post {
  1050. border: 3px solid #634852;
  1051. }
  1052. table.forum_post input[type=button] {
  1053. margin-right: 2px
  1054. }
  1055. table.forum_post span[style="float:left;"] img,table.forum_post td[colspan="2"] {
  1056. vertical-align: middle
  1057. }
  1058. td.avatar {
  1059. width: 150px;
  1060. padding: 0
  1061. }
  1062. table.forum_post td.body {
  1063. width: 646px;
  1064. }
  1065. /* Because Firefox apparently doesn't understand "100%" in tables */
  1066. #forums table.forum_post td.body > div {
  1067. max-width: 730px
  1068. }
  1069. .last_edited {
  1070. opacity: 0.6;
  1071. }
  1072. tbody {
  1073. max-width: 646px
  1074. }
  1075. blockquote {
  1076. border: 1px dashed #666;
  1077. margin: 10px;
  1078. padding: 10px
  1079. }
  1080. blockquote,pre {
  1081. background-color: #23252a!important
  1082. }
  1083. .signature {
  1084. border-top: 1px dotted #666;
  1085. margin: 2em 0 0;
  1086. padding: .5em 0 0
  1087. }
  1088. div.user_details {
  1089. padding: 5px
  1090. }
  1091. tr.unreadpm {
  1092. background-color: #651809!important
  1093. }
  1094. .permission_head {
  1095. width: 400px;
  1096. margin-left: auto;
  1097. margin-right: auto
  1098. }
  1099. .permissions {
  1100. width: 930px;
  1101. margin-left: auto;
  1102. margin-right: auto
  1103. }
  1104. .permission_container {
  1105. float: left;
  1106. width: 300px;
  1107. padding: 5px
  1108. }
  1109. .permission_container input {
  1110. vertical-align: top;
  1111. margin: 0 3px 5px 0
  1112. }
  1113. .submit_container {
  1114. clear: both;
  1115. text-align: right
  1116. }
  1117. ul .invitetree {
  1118. margin: 0 0 0 25px
  1119. }
  1120. .invitetree li {
  1121. list-style: none;
  1122. margin: 10px 2px
  1123. }
  1124. #left_poll {
  1125. width: 2px;
  1126. height: 9px;
  1127. background: #3caba6!important;
  1128. float: left;
  1129. margin: 0;
  1130. padding: 0
  1131. }
  1132. #center_poll {
  1133. height: 9px;
  1134. background-color: #3caba6!important;
  1135. float: left;
  1136. margin: 0;
  1137. padding: 0
  1138. }
  1139. #right_poll {
  1140. width: 2px;
  1141. height: 9px;
  1142. background: #3caba6!important;
  1143. float: left;
  1144. margin: 0;
  1145. padding: 0
  1146. }
  1147. .curtain {
  1148. position: fixed;
  1149. top: 0;
  1150. left: 0;
  1151. width: 100%;
  1152. height: 100%;
  1153. background-color: #000;
  1154. z-index: 1001
  1155. }
  1156. .lightbox {
  1157. position: fixed;
  1158. text-align: center;
  1159. top: 5%;
  1160. left: 5%;
  1161. width: 90%;
  1162. height: 90%;
  1163. z-index: 1002;
  1164. overflow: auto;
  1165. padding: 0
  1166. }
  1167. pre {
  1168. color: #FFF;
  1169. border: 1px dashed #55585f;
  1170. margin: 10px;
  1171. padding: 10px
  1172. }
  1173. #donation {
  1174. position: absolute;
  1175. display: inline;
  1176. width: 0;
  1177. top: 7px;
  1178. right: 38px;
  1179. padding: .6em 0;
  1180. text-align: center;
  1181. font-size: 1em;
  1182. color: #fff;
  1183. z-index: 1001
  1184. }
  1185. #donation:before {
  1186. content: url(images/donation/heart.png)
  1187. }
  1188. #DonBk,#DonBr {
  1189. display: none
  1190. }
  1191. #DonInfo a {
  1192. display: block;
  1193. height: 32px;
  1194. width: 36px;
  1195. color: #fff!important;
  1196. line-height: 90px;
  1197. margin-top: -153px
  1198. }
  1199. #blog .thin>br,#news .thin>br {
  1200. display: none
  1201. }
  1202. #blog .box,#news .box {
  1203. margin-bottom: 2px
  1204. }
  1205. #blog .head,#news .head {
  1206. width: 900px
  1207. }
  1208. #forums .box {
  1209. width: 900px;
  1210. margin-top: 2px
  1211. }
  1212. #forums .head {
  1213. width: 900px
  1214. }
  1215. #forums #content>br {
  1216. display: none
  1217. }
  1218. #forums #content .thin>p {
  1219. margin-top: -12px
  1220. }
  1221. #forums .box.pad {
  1222. padding: 1em 0;
  1223. background-color: #23252a;
  1224. }
  1225. #forums #content .thin>table.forum_post {
  1226. border-collapse: collapse!important
  1227. }
  1228. #actorshowcase .thin {
  1229. text-align: center
  1230. }
  1231. #actorshowcase .thin>table {
  1232. display: inline-block;
  1233. width: 25%;
  1234. height: 387px
  1235. }
  1236. #actorshowcase .thin>table>tbody {
  1237. height: 387px
  1238. }
  1239. .textarea_wrap {
  1240. padding-top: 15px;
  1241. }
  1242. #quickpost {
  1243. color: #eee!important;
  1244. font-size: 1.1em!important
  1245. }
  1246. #quickpostform {
  1247. background-color: transparent;
  1248. }
  1249. #quickreplybuttons input[value=Editor] {
  1250. margin-right: 2px
  1251. }
  1252. div.contenth #quickpost {
  1253. right: -2px
  1254. }
  1255. .bbcode_bar {
  1256. background: #373a42;
  1257. border: 1px solid #5b5e64;
  1258. border-bottom: none;
  1259. }
  1260. .bbcode_bar > li > a {
  1261. min-width: 15px;
  1262. }
  1263. #friends table[width="100%"] td {
  1264. text-align: center
  1265. }
  1266. .tickets_search {
  1267. width: 800px;
  1268. margin-left: auto;
  1269. margin-right: auto;
  1270. font-size: .8em
  1271. }
  1272. .tickets_categories {
  1273. float: left;
  1274. text-align: left;
  1275. padding: .5em
  1276. }
  1277. .tickets_status {
  1278. float: right;
  1279. text-align: left;
  1280. padding: .5em
  1281. }
  1282. .small_label {
  1283. width: 0;
  1284. text-align: right;
  1285. font-weight: 300
  1286. }
  1287. .filter_tickets {
  1288. width: 850px;
  1289. margin-left: auto;
  1290. margin-right: auto;
  1291. margin-bottom: 15px
  1292. }
  1293. .rank {
  1294. text-align: center;
  1295. font: small-caps 2.4em Georgia,"Times New Roman",Times,serif;
  1296. width: 86px;
  1297. margin-top: 10px;
  1298. margin-left: auto;
  1299. margin-right: auto;
  1300. position: relative
  1301. }
  1302. .rank img {
  1303. clear: both
  1304. }
  1305. .rankimghide {
  1306. display: none;
  1307. margin: 0;
  1308. padding: 0
  1309. }
  1310. .center h3 {
  1311. padding-top: 4px;
  1312. font-size: 1em
  1313. }
  1314. .review_row,.review_row.box {
  1315. margin-top: 2px
  1316. }
  1317. .inline_rank {
  1318. position: relative;
  1319. top: 80px;
  1320. left: 14px;
  1321. font: small-caps 1.4em Georgia,"Times New Roman",Times,serif
  1322. }
  1323. .inline_rank img {
  1324. width: 2%
  1325. }
  1326. .review_title {
  1327. font: small-caps 2.1em Georgia,"Times New Roman",Times,serif;
  1328. margin-left: 17px
  1329. }
  1330. .review_body {
  1331. float: right;
  1332. width: 765px;
  1333. overflow: auto;
  1334. margin: 6px 0 0;
  1335. padding: 1px
  1336. }
  1337. .review_details {
  1338. font-style: italic;
  1339. float: right;
  1340. padding-right: 12px;
  1341. padding-bottom: 10px;
  1342. padding-top: 5px
  1343. }
  1344. .review_search {
  1345. width: 900px;
  1346. text-align: center;
  1347. margin: auto
  1348. }
  1349. .review_search input {
  1350. width: 400px;
  1351. text-align: center
  1352. }
  1353. .left_tabs {
  1354. float: left;
  1355. width: 100px
  1356. }
  1357. a.tab {
  1358. display: block;
  1359. background-color: rgba(69,69,69,.35);
  1360. text-align: center;
  1361. color: #FFF;
  1362. font-weight: 300;
  1363. text-transform: lowercase;
  1364. padding: 4px
  1365. }
  1366. #content .home .main_column {
  1367. float: right
  1368. }
  1369. #content .home .main_column .of_the_month {
  1370. margin-left: -2px
  1371. }
  1372. #content .home .main_column .of_the_month .head {
  1373. width: 302px
  1374. }
  1375. #content .home .main_column .of_the_month .box {
  1376. width: 302px;
  1377. margin-left: 2px;
  1378. padding-bottom: 0!important
  1379. }
  1380. #content .home .main_column .of_the_month .box img {
  1381. width: 322px;
  1382. height: 474px;
  1383. margin-left: -10px;
  1384. margin-top: -10px
  1385. }
  1386. #content .home .main_column .of_the_month .box li {
  1387. padding-bottom: 10px
  1388. }
  1389. .home table,.home td {
  1390. border: 0
  1391. }
  1392. .home .sidebar {
  1393. float: left
  1394. }
  1395. #torrents .torrent_table .sign {
  1396. text-align: center
  1397. }
  1398. .sidebar .box .nobullet img {
  1399. width: initial;
  1400. margin: initial
  1401. }
  1402. #content .home .box {
  1403. margin-bottom: 2px
  1404. }
  1405. #content .home .sidebar #last_uploads img {
  1406. width: 252px;
  1407. margin-left: -10px;
  1408. margin-top: -7px;
  1409. margin-bottom: 4px
  1410. }
  1411. #content .home .sidebar #last_uploads li b {
  1412. display: none
  1413. }
  1414. #content .home #last_uploads {
  1415. margin-top: -3px
  1416. }
  1417. #content .home th {
  1418. text-align: left;
  1419. padding: 5px
  1420. }
  1421. #content .home tr.colhead {
  1422. border: 0;
  1423. border-bottom: 1px solid #000
  1424. }
  1425. #content .home th:first-child {
  1426. border-right: 1px solid #000
  1427. }
  1428. #content .home th:last-child {
  1429. border-left: 1px solid #000
  1430. }
  1431. a.tab:hover {
  1432. text-decoration: none;
  1433. background-color: rgba(69,69,69,.55)
  1434. }
  1435. a.tab#selected {
  1436. background-color: rgba(145,168,175,.3)
  1437. }
  1438. div.thin2 {
  1439. float: left;
  1440. width: 900px;
  1441. margin: auto
  1442. }
  1443. p#preloader {
  1444. margin: 0;
  1445. padding: 1em 1em 1em 3em
  1446. }
  1447. .profileLink a {
  1448. display: block;
  1449. color: #fff;
  1450. border-top: 1px solid #ccc;
  1451. padding: .3em 1em
  1452. }
  1453. div#gift {
  1454. width: 1px;
  1455. height: 1px;
  1456. position: relative;
  1457. top: 130px;
  1458. left: 895px;
  1459. z-index: 999
  1460. }
  1461. .button {
  1462. background: url(images/buttons.gif) center -34px no-repeat;
  1463. border: 0 solid #131313;
  1464. color: #EEE;
  1465. height: 30px;
  1466. letter-spacing: 1px;
  1467. line-height: 16px;
  1468. overflow: visible;
  1469. text-transform: uppercase;
  1470. padding: 5px 12px
  1471. }
  1472. #store #content {
  1473. position: relative;
  1474. margin-top: 2px
  1475. }
  1476. #store #content>div {
  1477. position: initial!important
  1478. }
  1479. .jquery-msgbox-confirm {
  1480. background: url(images/store/confirm.png) 20px 20px no-repeat!important
  1481. }
  1482. #store #content div[height="79px"] {
  1483. background-image: url(images/store/tooltip.png)!important
  1484. }
  1485. div.star-rating a,div.star-rating.star {
  1486. background: url(images/star.png) no-repeat!important
  1487. }
  1488. .small-star,.small-star .current-rating,.small-star a:active,.small-star a:focus,.small-star a:hover {
  1489. background-image: url(images/star_small.png)!important
  1490. }
  1491. .box #summary {
  1492. position: relative;
  1493. left: -10px
  1494. }
  1495. .info table,.info td,.info tr,.requests table,.requests td,.requests tr {
  1496. border: 0;
  1497. vertical-align: top;
  1498. margin: 0;
  1499. padding: 0
  1500. }
  1501. .info td {
  1502. border-bottom: 0 solid gray!important;
  1503. height: 50px;
  1504. vertical-align: middle;
  1505. width: 20px
  1506. }
  1507. #cat-selector ul,html {
  1508. width: 100%
  1509. }
  1510. #logo a:hover,.cat_list tr td,.noborder,.torrent_table td.group,img {
  1511. border: none
  1512. }
  1513. #wrapper,.thin {
  1514. width: 900px;
  1515. margin: 0 auto
  1516. }
  1517. .number,.right {
  1518. text-align: right
  1519. }
  1520. .number_column {
  1521. text-align: center;
  1522. }
  1523. .pad {
  1524. padding: 1em;
  1525. }
  1526. .home .extrapad {
  1527. padding: 0;
  1528. }
  1529. tr {
  1530. background-color: #2c2f36;
  1531. border-bottom: 2px solid #2c2f36;
  1532. }
  1533. .forum_post tr {
  1534. border-bottom: none;
  1535. }
  1536. .search_form .submit,.filter_tickets .submit,.filter_torrents .submit {
  1537. text-align: right;
  1538. padding-top: 5px;
  1539. }
  1540. .torrent_table tr.group {
  1541. background-color: #3E4046;
  1542. }
  1543. .torrent_table tr.group_torrent,tr.torrent {
  1544. background-color: #23252a;
  1545. }
  1546. tr.torrent:nth-of-type(even), tr.request:nth-of-type(even) {
  1547. background-color: #272A2F;
  1548. }
  1549. .group_torrent span,.torrent_table tr.group_torrent .year {
  1550. float: right
  1551. }
  1552. .tl_reported {
  1553. color: #e85a5a;
  1554. }
  1555. .tl_free {
  1556. color: gold;
  1557. }
  1558. .tl_seeding {
  1559. color: #8DE88D;
  1560. }
  1561. .tl_snatched {
  1562. color: orange;
  1563. }
  1564. .tl_leeching {
  1565. color: #FF3E3E;
  1566. }
  1567. form tr {
  1568. background-color: #2c2f36
  1569. }
  1570. #playbutton {
  1571. position: relative!important;
  1572. top: -138px!important;
  1573. left: 0!important;
  1574. margin-bottom: -110px!important
  1575. }
  1576. #tiptip_content {
  1577. font-size: 1em!important;
  1578. color: #fff!important;
  1579. text-shadow: none!important;
  1580. padding: 4px 8px;
  1581. border: 2px solid #5b5e64!important;
  1582. background-color: #373a42!important;
  1583. background-image: none!important;
  1584. border-radius: 0!important;
  1585. -webkit-border-radius: 0!important;
  1586. -moz-border-radius: 0!important;
  1587. box-shadow: none!important;
  1588. -webkit-box-shadow: none!important;
  1589. -moz-box-shadow: none!important
  1590. }
  1591. #tiptip_arrow,#tiptip_arrow_inner {
  1592. border: none!important
  1593. }
  1594. a.last_read > svg {
  1595. fill: #909090;
  1596. margin: 3px 6px;
  1597. }
  1598. .forum_index h3, .forum_list h3 {
  1599. margin-top: 24px;
  1600. }
  1601. .forum_index h4, .forum_list h4 {
  1602. font-size: 12px;
  1603. }
  1604. .forum_index td {
  1605. position: relative;
  1606. }
  1607. .forum_index .row:nth-child(odd) {
  1608. background: #33363d;
  1609. }
  1610. .forum_index td.read:after, #forums td.unread:after {
  1611. content: "";
  1612. position: absolute;
  1613. height: 8px;
  1614. width: 8px;
  1615. top: 9px;
  1616. left: 7px;
  1617. border-radius: 1px;
  1618. }
  1619. .forum_index td.read:after{
  1620. background-color: #20717C;
  1621. }
  1622. .forum_index td.unread:after {
  1623. background-color: #47B39A;
  1624. }
  1625. .forum_list .forum_index td.read:after, #forums .forum_list td.unread:after {
  1626. top: 14px;
  1627. }
  1628. .forum_index td.read_sticky:after, #forums td.unread_sticky:after,
  1629. .forum_index td.read_locked_sticky:after, #forums td.unread_locked_sticky:after {
  1630. content: "";
  1631. position: absolute;
  1632. height: 0px;
  1633. width: 0px;
  1634. top: 9px;
  1635. left: 6px;
  1636. border-left: 5px solid transparent;
  1637. border-right: 5px solid transparent;
  1638. }
  1639. .forum_index td.read_sticky:after,
  1640. .forum_index td.read_locked_sticky:after {
  1641. border-bottom: 10px solid #20717C;
  1642. }
  1643. .forum_index td.unread_sticky:after,
  1644. .forum_index td.unread_locked_sticky:after {
  1645. border-bottom: 10px solid #47B39A;
  1646. }
  1647. .forum_index td.read_locked:before, #forums td.unread_locked:before,
  1648. .forum_index td.read_locked_sticky:before, #forums td.unread_locked_sticky:before {
  1649. content: "";
  1650. position: absolute;
  1651. height: 2px;
  1652. width: 8px;
  1653. top: 12px;
  1654. left: 7px;
  1655. border-radius: 1px;
  1656. }
  1657. .forum_index td.read_locked:before,
  1658. .forum_index td.read_locked_sticky:before {
  1659. background-color: #20717C;
  1660. }
  1661. .forum_index td.unread_locked:before,
  1662. .forum_index td.unread_locked_sticky:before {
  1663. background-color: #47B39A;
  1664. }
  1665. .hide_torrents, .show_torrents {
  1666. position: relative;
  1667. cursor: pointer;
  1668. }
  1669. .hide_torrents > .show_torrents_link:after, .show_torrents > .show_torrents_link:after {
  1670. content: "";
  1671. position: absolute;
  1672. width: 19px;
  1673. height: 3px;
  1674. top: 13px;
  1675. left: 5px;
  1676. border-radius: 2px;
  1677. background-color: #74C796;
  1678. }
  1679. .show_torrents > .show_torrents_link:before {
  1680. content: "";
  1681. position: absolute;
  1682. width: 3px;
  1683. height: 19px;
  1684. top: 5px;
  1685. left: 13px;
  1686. border-radius: 2px;
  1687. background-color: #74C796;
  1688. }
  1689. .search_warning {
  1690. fill: #AAA;
  1691. }
  1692. .dead {
  1693. opacity: 0.7;
  1694. }
  1695. caption {
  1696. border-bottom: 1px dashed #666;
  1697. font-weight: bold;
  1698. }
  1699. .collage_image:hover {
  1700. box-shadow: 0px 0px 0px 3px #88C796;
  1701. position: relative;
  1702. }
  1703. /* Fucking noty */
  1704. .noty_bar {
  1705. border-left: #3eaca7 2px solid;
  1706. }
  1707. #noty_bottomRight_layout_container li {
  1708. background-color: #52555c !important;
  1709. color: #E9E9E9 !important;
  1710. border: none !important;
  1711. }
  1712. .noty_buttons {
  1713. background-color: #2c2f36 !important;
  1714. border-top: none !important;
  1715. }
  1716. .tag_parody {
  1717. color: #e8ab3a !important;
  1718. }
  1719. .tag_character {
  1720. color: #529e63 !important;
  1721. }
  1722. .tag_male {
  1723. color: #3d77e2 !important;
  1724. }
  1725. .tag_female {
  1726. color: #e896e8 !important;
  1727. }
  1728. .tex_img {
  1729. filter: invert(100%);
  1730. }
  1731. #coverCont {
  1732. font-size: 0;
  1733. padding: 5px;
  1734. background-color: #565960;
  1735. }
  1736. /* Pink Additions */
  1737. body.style_pink h1 a, body.style_pink h2 a, body.style_pink h3 a, body.style_pink h4 a, body.style_pink h5 a, body.style_pink h6 a {
  1738. color: #df7cc2;
  1739. }
  1740. body.style_pink .cats_anime:after { color: #78467f; }
  1741. body.style_pink .group .cats_anime { background-color: #78467f; }
  1742. body.style_pink .cats_movies:after { color: #4f3063; }
  1743. body.style_pink .group .cats_movies { background-color: #4f3063; }
  1744. body.style_pink .cats_manga:after { color: #9f5c9c; }
  1745. body.style_pink .group .cats_manga { background-color: #9f5c9c; }
  1746. body.style_pink .cats_games:after { color: #c871b9; }
  1747. body.style_pink .group .cats_games { background-color: #c871b9; }
  1748. body.style_pink .cats_other:after { color: #ef86d5; }
  1749. body.style_pink .group .cats_other { background-color: #ef86d5; }
  1750. body.style_pink a:hover, body.style_pink .torrent_table .group a:hover { color: #db7bc7; }
  1751. body.style_pink ::selection,
  1752. body.style_pink ::-moz-selection {
  1753. background: #8b518e;
  1754. }
  1755. body.style_pink button,
  1756. body.style_pink input[type=button],
  1757. body.style_pink input[type=submit] {
  1758. background-color: #8b518e;
  1759. }
  1760. body.style_pink button:hover,
  1761. body.style_pink input[type=button]:hover,
  1762. body.style_pink input[type=submit]:hover {
  1763. background-color: #643c72;
  1764. }
  1765. body.style_pink button:focus,
  1766. body.style_pink input[type=button]:focus,
  1767. body.style_pink input[type=submit]:focus {
  1768. background-color: #78467f;
  1769. }
  1770. body.style_pink #userinfo_stats { color: #db7bc7; }
  1771. body.style_pink #menu > ul > li:nth-of-type(1) { background-color: #3b2655; }
  1772. body.style_pink #menu > ul > li:nth-of-type(2) { background-color: #4f3063; }
  1773. body.style_pink #menu > ul > li:nth-of-type(3) { background-color: #643c72; }
  1774. body.style_pink #menu > ul > li:nth-of-type(4) { background-color: #78467f; }
  1775. body.style_pink #menu > ul > li:nth-of-type(5) { background-color: #8b518e; }
  1776. body.style_pink #menu > ul > li:nth-of-type(6) { background-color: #9f5c9c; }
  1777. body.style_pink #menu > ul > li:nth-of-type(7) { background-color: #b367aa; }
  1778. body.style_pink #menu > ul > li:nth-of-type(8) { background-color: #c871b9; }
  1779. body.style_pink #menu > ul > li:nth-of-type(9) { background-color: #db7bc7; }
  1780. body.style_pink #menu > ul > li:nth-of-type(10) { background-color: #ef86d5; }
  1781. body.style_pink #menu > ul > .nav_dropdown:hover,
  1782. body.style_pink .nav_dropdown > div {
  1783. background-color: #e295d2;
  1784. }
  1785. body.style_pink .linkbox > strong { color: #db7bc7; }
  1786. body.style_pink .alertbar { background-color: #4f3063; }
  1787. body.style_pink .hide_torrents > .show_torrents_link:after,
  1788. body.style_pink .show_torrents > .show_torrents_link:after,
  1789. body.style_pink .show_torrents > .show_torrents_link:before {
  1790. background-color: #b367aa;
  1791. }
  1792. body.style_pink .forum_index td.read:after { background-color: #643c72; }
  1793. body.style_pink .forum_index td.unread:after { background-color: #db7bc7; }
  1794. body.style_pink .forum_index td.read_sticky:after,
  1795. body.style_pink .forum_index td.read_locked_sticky:after {
  1796. border-bottom: 10px solid #643c72;
  1797. }
  1798. body.style_pink .forum_index td.read_locked:before,
  1799. body.style_pink .forum_index td.read_locked_sticky:before {
  1800. background-color: #643c72;
  1801. }
  1802. body.style_pink .forum_index td.unread_sticky:after,
  1803. body.style_pink .forum_index td.unread_locked_sticky:after {
  1804. border-bottom: 10px solid #db7bc7;
  1805. }
  1806. body.style_pink .forum_index td.unread_locked:before,
  1807. body.style_pink .forum_index td.unread_locked_sticky:before {
  1808. background-color: #db7bc7;
  1809. }
  1810. body.style_pink .forum_post.forum_unread {
  1811. border-top: 2px solid #c1569b;
  1812. }
  1813. body.style_pink .noty_bar {
  1814. border-left: #ef86d5 2px solid;
  1815. }
  1816. body.style_pink .collage_image:hover {
  1817. box-shadow: 0px 0px 0px 3px #ef86d5;
  1818. }
  1819. /* Haze Additions */
  1820. body.style_haze {
  1821. background-color: #53565c;
  1822. background-image: url('images/haze.png');
  1823. background-attachment: fixed;
  1824. background-size: cover;
  1825. }
  1826. body.style_haze #logo > a { color: white;}
  1827. body.style_haze #searchbars {
  1828. background-color: rgba(24,32,41,0.05);
  1829. }
  1830. body.style_haze #searchbars input {
  1831. background: rgba(24,32,41,0.3);
  1832. border: none;
  1833. }
  1834. body.style_haze #menu li:nth-child(1) { background: rgba(24,32,41,0.7); }
  1835. body.style_haze #menu li:nth-child(2) { background: rgba(24,32,41,0.65); }
  1836. body.style_haze #menu li:nth-child(3) { background: rgba(24,32,41,0.6); }
  1837. body.style_haze #menu li:nth-child(4) { background: rgba(24,32,41,0.55); }
  1838. body.style_haze #menu li:nth-child(5) { background: rgba(24,32,41,0.5); }
  1839. body.style_haze #menu li:nth-child(6) { background: rgba(24,32,41,0.45); }
  1840. body.style_haze #menu li:nth-child(7) { background: rgba(24,32,41,0.4); }
  1841. body.style_haze #menu li:nth-child(8) { background: rgba(24,32,41,0.35); }
  1842. body.style_haze #menu li:nth-child(9) { background: rgba(24,32,41,0.3); }
  1843. body.style_haze #menu li:nth-child(10) { background: rgba(24,32,41,0.25); }
  1844. body.style_haze #menu li a:hover { background: white; color: black; }
  1845. body.style_haze .nav_dropdown > div { background: rgba(24,32,41,0.3); }
  1846. body.style_haze #userinfo_minor > li > ul { background: white; color: black; }
  1847. body.style_haze #alerts .alertbar {background: rgba(24,32,41,0.4);}
  1848. body.style_haze .colhead, body.style_haze .head {background: rgba(24,32,41,0.4);}
  1849. body.style_haze .colhead_dark {background: rgba(24,32,41,0.5);}
  1850. body.style_haze tr {background: rgba(75,75,75,0.35); border-bottom: none;}
  1851. body.style_haze .box {background: rgba(75,75,75,0.35) !important;}
  1852. body.style_haze select, body.style_haze input, body.style_haze textarea {background: rgba(24,32,41,0.3); border: none;}
  1853. body.style_haze table tbody a, body.style_haze .main_column a, body.style_haze .sidebar a, body.style_haze .box a { color: rgba(255,255,255,0.6); }
  1854. body.style_haze #userinfo_stats {color: rgba(255,255,255,0.6);}
  1855. body.style_haze #userinfo_stats a {color: rgba(255,255,255,0.6);}
  1856. body.style_haze #userinfo_stats .stat > span {color: white;}
  1857. body.style_haze #userinfo_stats .stat > a {color: white;}
  1858. body.style_haze .filter_torrents #ft_container tr {background: none;}
  1859. body.style_haze tr.torrent, body.style_haze tr.request {background-color: rgba(24,32,41,0.6);}
  1860. body.style_haze tr.torrent:nth-of-type(even), body.style_haze tr.request:nth-of-type(even) {background-color: rgba(24,32,41,0.4);}
  1861. body.style_haze tr.group {background-color: rgba(24,32,41,0.7);}
  1862. body.style_haze tr.group_torrent {background-color: rgba(24,32,41,0.75);}
  1863. body.style_haze .body {background: none;}
  1864. body.style_haze blockquote {background-color: rgba(24,32,41,0.4) !important; border: 1px solid rgba(255,255,255,0.36)}
  1865. body.style_haze h2 a {color: rgba(255,255,255,0.6);}
  1866. body.style_haze .linkbox a {color: rgba(255,255,255,0.7);}
  1867. body.style_haze .noty_bar {border-left: none;}
  1868. body.style_haze #noty_bottomRight_layout_container li {background-color: rgba(82, 85, 92, 0.59) !important}
  1869. body.style_haze .noty_buttons {background-color: rgba(44, 47, 54, 0.6) !important}