BioTorrents.de’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

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