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

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