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.

genaviv.scss 40KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442
  1. #header a:hover,
  2. #header a:focus,
  3. ul.ui-autocomplete.ui-menu.ui-widget li a:hover,
  4. ul.ui-autocomplete.ui-menu.ui-widget li a:focus,
  5. div#footer p:after {
  6. color: #32867d;
  7. }
  8. a,
  9. tr.unreadpm a,
  10. #summary .ui-widget-content a,
  11. #wrapper .alert-bars a,
  12. tr.inbox-message--unread td a,
  13. tr.unreadpm a {
  14. color: #32867d;
  15. }
  16. a:hover,
  17. a[href*="torrents.php?id"]:hover,
  18. .colhead td a:hover,
  19. #content .forum_post .colhead_dark a:hover,
  20. #content .forum_post .colhead_dark a:focus,
  21. #wrapper .alert-bars a:hover {
  22. color: #000;
  23. }
  24. td a:hover,
  25. table#torrent_table a[href*="torrents.php?torrentid"] strong,
  26. a[href*="torrents.php?id"][title="View Torrent"],
  27. a[href*="torrents.php?id"]:hover,
  28. #torrents .torrent_table a[onclick*="toggle"]:hover,
  29. #header .new-subscriptions a {
  30. color: #32867d;
  31. }
  32. body #wrapper div#header {
  33. background-color: #1a1a1a;
  34. }
  35. #userinfo_minor a:hover,
  36. #menu ul > li > a:hover {
  37. color: #32867d;
  38. }
  39. #userinfo_minor > li > ul {
  40. display: none;
  41. background: #1a1a1a;
  42. padding: 6px 10px;
  43. margin-top: 7px;
  44. position: absolute;
  45. }
  46. #userinfo_minor > li > ul > li {
  47. display: block;
  48. }
  49. #header a.username {
  50. color: #32867d;
  51. }
  52. input[type="submit"],
  53. input[type="button"] {
  54. background: #6cb3ae;
  55. }
  56. ::-webkit-input-placeholder {
  57. color: #848484;
  58. }
  59. ::-moz-placeholder {
  60. color: #848484;
  61. }
  62. :-ms-input-placeholder {
  63. color: #848484;
  64. }
  65. #taglist tr td a,
  66. .tags a,
  67. .sidebar .stats.nobullet a {
  68. background: #9c9c9c;
  69. }
  70. .box_info .stats.nobullet li a {
  71. color: #32867d !important;
  72. }
  73. #header .alertbar a:hover {
  74. color: #f7f7f7;
  75. }
  76. td.unread:before {
  77. color: #32867d;
  78. }
  79. td.unread_sticky:before {
  80. color: #32867d;
  81. }
  82. td.unread_locked:before {
  83. color: #32867d;
  84. }
  85. td.unread_locked_sticky:before {
  86. color: #32867d;
  87. }
  88. input[type="submit"],
  89. input[type="button"] {
  90. background: #6cb3ae;
  91. }
  92. form.search_form input[type="submit"],
  93. form.search_form input[type="button"] {
  94. background: #6cb3ae;
  95. }
  96. .group_info > a:nth-child(2n),
  97. .group_info > a:nth-child(3n) {
  98. color: #32867d;
  99. }
  100. #index .sidebar .stats.nobullet a {
  101. background: inherit;
  102. color: #32867d;
  103. }
  104. .forum_post a {
  105. color: #32867d;
  106. }
  107. li#nav_subscriptions.new-subscriptions a {
  108. color: #3c9454 !important;
  109. }
  110. .box.filter_torrents .head a:hover,
  111. .box.filter_torrents .head a:focus,
  112. .forum_post .colhead a:hover,
  113. .forum_post .colhead_dark a:focus,
  114. #inbox .box .head a:focus,
  115. #inbox .box .head a:hover {
  116. color: #32867d;
  117. }
  118. #request_table .row td:first-of-type > a:nth-child(2n) {
  119. color: #32867d;
  120. }
  121. span.r99,
  122. .r09,
  123. .r10,
  124. .r20,
  125. .r30,
  126. .r40,
  127. .r50 {
  128. color: #3c9454;
  129. }
  130. .box.filter_torrents .head,
  131. .colhead td,
  132. .colhead_dark td,
  133. tr.colhead,
  134. tr.colhead_dark,
  135. #inbox .box .head,
  136. #inbox .box .head,
  137. #reply_box h3,
  138. #inbox form .send_form #quickpost h3,
  139. .sidebar .box .head,
  140. .main_column .box .head.colhead_dark,
  141. .box.news_post .head,
  142. tr.colhead,
  143. tr.colhead_dark,
  144. .head.colhead_dark,
  145. .main_column .box .head {
  146. border-bottom: 2px solid #45847e !important;
  147. }
  148. #header > #menu ul > li.active > a {
  149. color: #32867d;
  150. }
  151. .alertbar a {
  152. color: #32867d;
  153. }
  154. .alertbar.modbar a {
  155. margin: 0px 5px;
  156. }
  157. .box.filter_torrents .head,
  158. .colhead td,
  159. .colhead_dark td,
  160. tr.colhead,
  161. tr.colhead_dark,
  162. #inbox .box .head,
  163. #inbox .box .head,
  164. #reply_box h3,
  165. #inbox form .send_form #quickpost h3,
  166. .sidebar .box .head,
  167. .main_column .box .head.colhead_dark,
  168. .box.news_post .head,
  169. tr.colhead,
  170. tr.colhead_dark,
  171. .head.colhead_dark,
  172. .main_column .box .head {
  173. background: #5aada5;
  174. }
  175. .box.filter_torrents .head,
  176. .colhead td,
  177. .colhead_dark td,
  178. tr.colhead,
  179. tr.colhead_dark,
  180. #inbox .box .head,
  181. #inbox .box .head,
  182. #reply_box h3,
  183. #inbox form .send_form #quickpost h3,
  184. #blog .head {
  185. background: #5aada5;
  186. }
  187. .ui-widget-content a:hover {
  188. color: #70b3ab !important;
  189. }
  190. *:before,
  191. *:after {
  192. -webkit-box-sizing: border-box;
  193. -moz-box-sizing: border-box;
  194. box-sizing: border-box;
  195. }
  196. * {
  197. padding: 0;
  198. margin: 0;
  199. }
  200. ul#userinfo_minor > li > a {
  201. padding: 0 20px;
  202. }
  203. h2 {
  204. font-size: 0.9rem;
  205. }
  206. .torrent_info_row .preformatted-text--scrolled {
  207. white-space: normal;
  208. }
  209. .sidebar {
  210. padding: 0 0 0 2px;
  211. }
  212. .thin > div {
  213. margin-top: 2px;
  214. }
  215. body h1,
  216. body h2,
  217. body h3,
  218. body h4 {
  219. padding: 5px 0;
  220. }
  221. .linkbox,
  222. .pagination.pagination--top.js-pagination,
  223. td,
  224. .pagination.pagination--bottom.js-pagination {
  225. padding: 5px;
  226. }
  227. #user .main_column table[cellpadding="0"] tr td {
  228. border: none;
  229. }
  230. li#nav_subscriptions a,
  231. li#nav_subscriptions a:hover {
  232. font-weight: normal;
  233. }
  234. .panel__body,
  235. .panel__heading,
  236. .box,
  237. .head {
  238. padding: 10px;
  239. }
  240. #forums table.forum_post tr td:nth-child(2n) a {
  241. font-weight: inherit;
  242. }
  243. .toggleable-search-form__toggler-container,
  244. #torrents tr.colhead_dark td,
  245. .forum-post__heading,
  246. #series tr.colhead_dark td,
  247. thead th {
  248. padding: 10px 10px 9px 10px;
  249. }
  250. .box .head {
  251. margin: -10px -10px 6px !important;
  252. }
  253. div#covers > div:first-of-type {
  254. margin-top: -6px;
  255. }
  256. .head {
  257. margin-bottom: 6px;
  258. }
  259. table.torrent_table .group_torrent td {
  260. font-size: 0.75rem;
  261. }
  262. span#rippy-says a[href*="torrents.php?id"] {
  263. color: inherit;
  264. }
  265. span#rippy-says a[href*="torrents.php?id"]:hover {
  266. color: inherit;
  267. text-decoration: underline;
  268. }
  269. .forum_list h3,
  270. .pagination.pagination--top,
  271. .pagination.pagination--bottom {
  272. padding: 5px;
  273. }
  274. a.last_read > svg {
  275. fill: #a7a7a7;
  276. margin: 2px 6px;
  277. }
  278. span.last_read {
  279. margin-left: 5px;
  280. }
  281. #torrent_details
  282. span[style="text-shadow: 0px 0px 2px black, 0px 0px 4px black, 0px 0px 8px black, 0px 0px 10px black; color: orange; font-family: Candara, sans-serif;"] {
  283. text-shadow: none !important;
  284. color: inherit !important;
  285. font-size: inherit !important;
  286. font-family: inherit !important;
  287. }
  288. .alertbar {
  289. text-align: center;
  290. padding: 10px;
  291. background: #d0d0d0;
  292. text-align: center;
  293. }
  294. .alertbar.warning {
  295. color: #cc7100;
  296. }
  297. .alertbar.error {
  298. color: #ff0000;
  299. }
  300. .sidebar .stats.nobullet a {
  301. padding: 3px 6px;
  302. }
  303. #content td.avatar {
  304. padding: 0;
  305. }
  306. .head[style="height: 13px;"] {
  307. height: 36px !important;
  308. }
  309. tr.colhead {
  310. font-weight: bold;
  311. }
  312. .forum_post .colhead_dark td,
  313. #torrents table.forum_post tr.colhead_dark td {
  314. padding: 7px;
  315. padding-top: 0;
  316. padding-bottom: 0;
  317. }
  318. .forum_post {
  319. margin-bottom: 20px;
  320. }
  321. blockquote {
  322. margin: 10px;
  323. padding: 10px;
  324. }
  325. .box.box_albumart {
  326. padding-bottom: 0;
  327. }
  328. .box.box_albumart p {
  329. margin-left: -10px;
  330. margin-right: -10px;
  331. }
  332. .box.box_albumart p img {
  333. max-width: 100% !important;
  334. min-width: 100%;
  335. }
  336. #content > .thin > h2 {
  337. margin-top: 2px;
  338. }
  339. #index .thin > div,
  340. #series > #content,
  341. #showslist #content,
  342. #nfo #content,
  343. #kb #content,
  344. #store #content {
  345. margin-top: 10px;
  346. }
  347. #user .sidebar div[align="center"] {
  348. min-width: 100%;
  349. padding: 0 !important;
  350. margin: -6px -10px -10px;
  351. }
  352. div#last5:last-child {
  353. border-right: none;
  354. }
  355. .of_the_month > .box:first-child {
  356. width: calc(50% - 2px);
  357. margin-right: 2px;
  358. }
  359. .of_the_month > .box {
  360. width: 50%;
  361. display: block;
  362. box-sizing: border-box;
  363. }
  364. .of_the_month > .box ul.stats.nobullet {
  365. margin-left: -10px;
  366. margin-right: -10px;
  367. }
  368. .of_the_month > .box ul.stats.nobullet li {
  369. padding-right: 10px;
  370. padding-left: 10px;
  371. }
  372. .of_the_month > .box ul.stats.nobullet li:first-child {
  373. padding: 0;
  374. }
  375. #user #slider .scroll,
  376. .forum-post__bodyguard iframe {
  377. width: 100%;
  378. }
  379. div#last5 {
  380. width: 20%;
  381. width: calc(20% - 2px) !important;
  382. margin: 0 2px 0 0 !important;
  383. padding: 0 !important;
  384. display: block !important;
  385. float: left !important;
  386. text-align: center;
  387. box-sizing: border-box;
  388. }
  389. div#last5:last-of-type {
  390. margin-right: 0 !important;
  391. width: 20% !important;
  392. }
  393. div#latest5 > div {
  394. margin-left: -10px;
  395. margin-right: -10px;
  396. margin-top: -6px;
  397. }
  398. table.forum_index,
  399. .forum_list h3 {
  400. margin-bottom: 2px;
  401. }
  402. input[type="submit"],
  403. input[type="button"] {
  404. padding: 5px 8px;
  405. }
  406. #taglist tr td a,
  407. .huge-movie-list__movie__tag-list a,
  408. .movie-tooltip__tag,
  409. a.basic-movie-list__movie__tag,
  410. .tags a,
  411. ul.stats.nobullet li a[href*="torrents.php?taglist="],
  412. a.cover-movie-list__movie__tag {
  413. padding: 3px 6px;
  414. margin: 1px;
  415. }
  416. #searchbars li input,
  417. #searchbars li input:hover,
  418. #searchbars li input:focus,
  419. .search-bar li input,
  420. .search-bar li input:hover,
  421. .search-bar li input:focus {
  422. padding: 5px 6px;
  423. margin: 0 3px;
  424. }
  425. input,
  426. textarea[name="body"] {
  427. padding: 3px 5px;
  428. }
  429. .qtip-content {
  430. padding: 10px;
  431. }
  432. .movie-tooltip__ratings div,
  433. .movie-tooltip__director-list div,
  434. .movie-tooltip__ratings {
  435. display: inline-block;
  436. }
  437. div#searchbars > ul,
  438. div.search-bar > ul {
  439. padding: 4px 0;
  440. }
  441. ul#userinfo_username > li,
  442. ul#userinfo_major > li,
  443. ul#userinfo_stats > li {
  444. padding: 0 5px;
  445. }
  446. body {
  447. font-family: "Proxima Nova", "Lato", "Segoe UI", sans-serif;
  448. font-size: 13px;
  449. -moz-osx-font-smoothing: grayscale !important;
  450. -webkit-font-smoothing: antialiased !important;
  451. text-rendering: optimizeLegibility !important;
  452. }
  453. #header {
  454. background-size: cover;
  455. background-repeat: no-repeat;
  456. background-position: center center;
  457. padding-top: 50px;
  458. text-align: center;
  459. }
  460. #content {
  461. margin: 0 auto;
  462. }
  463. @media (min-width: 544px) {
  464. #content {
  465. max-width: 576px;
  466. }
  467. }
  468. @media (min-width: 768px) {
  469. #content {
  470. max-width: 720px;
  471. }
  472. }
  473. @media (min-width: 992px) {
  474. #content {
  475. max-width: 940px;
  476. }
  477. }
  478. @media (min-width: 1200px) {
  479. #content {
  480. max-width: 1140px;
  481. }
  482. }
  483. div.thin > center img#banner,
  484. #series .sidebar img,
  485. div[style="height:140px; max-height:140px;max-width:758px;"] {
  486. position: relative;
  487. }
  488. .signature {
  489. padding-top: 10px;
  490. margin-top: 10px;
  491. }
  492. .center,
  493. #inbox form#messageform[name="reply"] div.box.pad,
  494. #inbox .thin form#messageform[name="message"] div.box.pad {
  495. text-align: center;
  496. }
  497. body#actorshowcase #content table {
  498. display: inline-block;
  499. width: 24.7%;
  500. text-align: center;
  501. margin: 0 0 7px;
  502. vertical-align: top;
  503. }
  504. body#actorshowcase #content table tbody {
  505. display: inline-block;
  506. text-align: initial;
  507. }
  508. body#actorshowcase #content table:first-of-type {
  509. display: none;
  510. }
  511. input,
  512. input[type="search"],
  513. form textarea,
  514. form input,
  515. input[type="search" i],
  516. input,
  517. textarea,
  518. keygen,
  519. select,
  520. button {
  521. border: none;
  522. }
  523. .sidebar {
  524. width: 25%;
  525. float: right;
  526. }
  527. .main_column,
  528. .main-column {
  529. width: 75%;
  530. float: left;
  531. }
  532. div,
  533. table,
  534. tr,
  535. td {
  536. border-collapse: collapse;
  537. box-sizing: border-box;
  538. }
  539. h1,
  540. h2,
  541. h3,
  542. h4 {
  543. margin: 0;
  544. }
  545. a,
  546. tr.unreadpm a {
  547. text-decoration: none;
  548. -webkit-transition: color 0.25s ease-out;
  549. transition: color 0.25s ease-out;
  550. }
  551. ul.navigation li {
  552. display: inline-block !important;
  553. }
  554. .collage tr td,
  555. .collage tr td:first-of-type,
  556. .collage tr td:first-child,
  557. .collage tr td:last-of-type,
  558. .collage tr td:last-child {
  559. display: inline-block;
  560. }
  561. .collage a[href*="torrents.php?id"] img {
  562. max-width: 128.015px;
  563. }
  564. #staffpm #compose form h3 label[for="message"] {
  565. margin: 10px 0 0;
  566. display: block;
  567. }
  568. #staffpm #compose form h3 label[for="message"],
  569. #inbox h3,
  570. #staffpm h3 label,
  571. #reply_box h3 {
  572. font-size: 14px;
  573. }
  574. #staffpm h3 label {
  575. display: block;
  576. }
  577. #staffpm form#messageform,
  578. #staffpm #inbox h3,
  579. h3,
  580. h2 {
  581. background: inherit;
  582. border: inherit;
  583. }
  584. #inbox #wrapper #content .thin div.box.pad table.message_table.checkboxes {
  585. text-align: left;
  586. }
  587. #inbox input[type="text"] {
  588. margin-bottom: 5px;
  589. }
  590. .forum_post,
  591. table.message_table.checkboxes {
  592. width: 100%;
  593. }
  594. .forum_post td.avatar {
  595. width: 16.6%;
  596. }
  597. .forum_post td.body {
  598. width: 83.4%;
  599. word-break: break-word;
  600. font-size: 14px;
  601. line-height: 1.4;
  602. }
  603. .forum-post__body {
  604. word-break: break-word;
  605. font-size: 14px;
  606. line-height: 1.4;
  607. }
  608. .forum-post__body {
  609. padding: 5px 10px;
  610. }
  611. #footer,
  612. header {
  613. clear: both;
  614. float: none;
  615. }
  616. #footer {
  617. text-align: center;
  618. }
  619. td {
  620. border-bottom: 1px solid #2b2b2b;
  621. }
  622. td.left {
  623. text-align: right;
  624. }
  625. .search-bar__search-field__input,
  626. .search-bar__results,
  627. .footer,
  628. .cover-movie-list__movie__tags,
  629. .cover-movie-list__movie__year,
  630. .cover-movie-list__movie__new,
  631. .huge-movie-list__movie__torrent-summary,
  632. .basic-movie-list__movie__bookmark,
  633. .basic-movie-list__movie__rating-container,
  634. .basic-movie-list__torrent-row,
  635. .panel__heading__toggler,
  636. #content > .thin table#torrent_table tr.group_torrent td,
  637. #content > .thin table#discog_table tr.group_torrent td {
  638. font-size: 0.723rem;
  639. }
  640. .torrent_row span,
  641. .group_torrent span {
  642. float: right;
  643. }
  644. .forum_post:last-of-type,
  645. .forum_post:last-child {
  646. margin-bottom: 0;
  647. }
  648. #menu,
  649. .main-menu {
  650. position: absolute;
  651. top: 0;
  652. z-index: 1500;
  653. width: 100%;
  654. height: 50px;
  655. transition: background 0.5s;
  656. transform: translateZ(0px);
  657. min-height: 50px;
  658. border: 1px solid transparent;
  659. text-align: center;
  660. }
  661. #menu:before,
  662. #menu:after,
  663. .main-menu:before,
  664. .main-menu:after,
  665. div#quickreplytext:after,
  666. #inbox form.send_form #quickpost:after {
  667. content: " ";
  668. display: table;
  669. }
  670. #menu ul > li > a,
  671. .main-menu ul > li > a {
  672. line-height: 20px;
  673. font-size: 14px;
  674. }
  675. #menu ul > li,
  676. .main-menu ul > li {
  677. padding: 15px 20px;
  678. }
  679. #userinfo_minor a {
  680. line-height: 30px;
  681. display: inline-block;
  682. }
  683. .box:before,
  684. .box:after {
  685. content: " ";
  686. display: table;
  687. }
  688. #header div#searchbars,
  689. #header div.search-bar {
  690. width: 100%;
  691. text-align: center;
  692. }
  693. div#userinfo {
  694. text-align: center;
  695. padding-bottom: 8px;
  696. }
  697. ul#userinfo_username,
  698. ul#userinfo_major,
  699. ul#userinfo_stats,
  700. ul#userinfo_minor {
  701. display: inline !important;
  702. vertical-align: middle;
  703. text-align: center;
  704. }
  705. td.label {
  706. max-width: 150px;
  707. width: 150px;
  708. text-align: right;
  709. vertical-align: middle;
  710. }
  711. td.ft_cataloguenumber,
  712. td.ft_remastertitle {
  713. width: 33.3%;
  714. max-width: 33.3%;
  715. }
  716. #taglist tr td {
  717. border: none;
  718. }
  719. #taglist {
  720. text-align: center;
  721. font-size: 0.7187rem;
  722. }
  723. table.layout {
  724. width: 100%;
  725. }
  726. #taglist tr,
  727. #taglist tr td {
  728. display: inline;
  729. padding: 0;
  730. }
  731. table.layout,
  732. table.layout.border,
  733. div#ft_container {
  734. font-size: 12px;
  735. margin: 0 auto;
  736. }
  737. table.layout.border {
  738. border-collapse: separate;
  739. }
  740. #upload form {
  741. text-align: left;
  742. }
  743. .sidebar > div,
  744. .sidebar ul,
  745. .sidebar table,
  746. div#quickreplytext {
  747. margin-bottom: 5px;
  748. }
  749. div#add_cover_div:after {
  750. content: " ";
  751. width: 100%;
  752. display: table;
  753. clear: both;
  754. }
  755. form.search_form input {
  756. border: 1px solid transparent;
  757. }
  758. form.search_form input {
  759. border: 1px solid transparent;
  760. }
  761. select {
  762. border: 1px solid transparent;
  763. }
  764. select {
  765. border: 1px solid transparent;
  766. }
  767. form.search_form input:hover,
  768. select:hover {
  769. box-sizing: border-box;
  770. -moz-box-sizing: border-box;
  771. -webkit-box-sizing: border-box;
  772. border: 1px solid #444;
  773. }
  774. form.search_form input:focus,
  775. select:focus {
  776. box-sizing: border-box;
  777. -moz-box-sizing: border-box;
  778. -webkit-box-sizing: border-box;
  779. }
  780. form.create_form {
  781. text-align: center;
  782. }
  783. form.create_form table {
  784. display: inline-block;
  785. }
  786. #inbox input[type="search"] {
  787. width: 50%;
  788. margin: 2px auto;
  789. display: block;
  790. color: inherit;
  791. }
  792. input[type="submit"],
  793. input[type="button"] {
  794. margin: 1px;
  795. cursor: pointer;
  796. }
  797. input[type="submit"]:hover,
  798. input[type="submit"]:focus,
  799. input[type="button"]:hover,
  800. input[type="button"]:focus {
  801. -webkit-transition: color 0.25s ease-out;
  802. transition: color 0.25s ease-out;
  803. }
  804. .nobullet {
  805. list-style-type: none;
  806. }
  807. .box ul.stats.nobullet li {
  808. font-size: 0.8125rem;
  809. }
  810. #covers img,
  811. #artist .sidebar img {
  812. z-index: 1;
  813. }
  814. #taglist tr td a,
  815. .huge-movie-list__movie__tag-list a,
  816. a.cover-movie-list__movie__tag,
  817. .movie-tooltip__tag,
  818. a.basic-movie-list__movie__tag,
  819. .tags a,
  820. .sidebar .stats.nobullet a {
  821. -webkit-border-radius: 10px;
  822. -moz-border-radius: 10px;
  823. border-radius: 10px;
  824. -webkit-transition: background 0.25s ease-out, color 0.25s ease-out;
  825. transition: background 0.25s ease-out, color 0.25s ease-out;
  826. font-size: 0.7187rem;
  827. display: inline-block;
  828. margin: 1px 0;
  829. }
  830. .main_column .box .head.colhead_dark,
  831. .box.news_post .head,
  832. .main-column .box .head.colhead_dark,
  833. .box.news_post .head {
  834. border-bottom: 1px solid #2b2b2b;
  835. }
  836. .sidebar .stats.nobullet a.brackets {
  837. background: inherit !important;
  838. color: inherit;
  839. padding: 0 2px;
  840. }
  841. .box_info .stats.nobullet li a {
  842. background: inherit;
  843. font-size: inherit;
  844. font-weight: 400;
  845. }
  846. .box_info .stats.nobullet li a:hover {
  847. background: inherit;
  848. font-size: inherit;
  849. font-weight: 400;
  850. }
  851. .toggleable-search-form__toggler-container,
  852. .panel__heading,
  853. .sidebar .box .head,
  854. .main_column .box .head.colhead_dark,
  855. .sidebar .box .head,
  856. .main-column .box .head.colhead_dark,
  857. .box.news_post .head,
  858. tr.colhead,
  859. tr.colhead_dark,
  860. .head.colhead_dark,
  861. .main_column .box .head,
  862. .main-column .box .head,
  863. .forum-post__heading {
  864. font-size: 14px;
  865. }
  866. span.last_read a:before {
  867. content: "\f061";
  868. font-family: FontAwesome;
  869. line-height: 31px;
  870. }
  871. .forum_index span.last_read a:before,
  872. table.forum_list span.last_read a:before {
  873. line-height: inherit;
  874. }
  875. #artist .sidebar img {
  876. width: 100%;
  877. height: auto;
  878. min-width: 100%;
  879. }
  880. table#collages,
  881. table.collage_table,
  882. table.vote_matches_table {
  883. width: 100%;
  884. }
  885. td.unread:before {
  886. content: "\f075";
  887. font-family: FontAwesome;
  888. }
  889. td.read:before {
  890. content: "\f075";
  891. font-family: FontAwesome;
  892. }
  893. td.read_sticky:before {
  894. content: "\f086";
  895. font-family: FontAwesome;
  896. }
  897. td.unread_sticky:before {
  898. content: "\f086";
  899. font-family: FontAwesome;
  900. }
  901. td.read_locked:before {
  902. content: "\f075";
  903. font-family: FontAwesome;
  904. content: \f023;
  905. font-family: FontAwesome;
  906. }
  907. div.body table tbody tr td[style="width: 20%"] {
  908. padding: 0;
  909. vertical-align: top;
  910. }
  911. td.unread_locked:before {
  912. content: "\f023";
  913. font-family: FontAwesome;
  914. }
  915. td.read_locked_sticky:before {
  916. content: "\f06a";
  917. font-family: FontAwesome;
  918. }
  919. td.unread_locked_sticky:before {
  920. content: "\f06a";
  921. font-family: FontAwesome;
  922. }
  923. .forum_list h4,
  924. .forum_list h3,
  925. .forum_list h2,
  926. .forum_list h1 {
  927. font-size: inherit;
  928. font-weight: bold;
  929. }
  930. .submit.ft_submit span {
  931. font-size: 0.7187rem;
  932. margin: 0 10px 0 0;
  933. display: block;
  934. }
  935. form.search_form input[type="submit"]:hover,
  936. form.search_form input[type="button"]:hover {
  937. cursor: pointer;
  938. }
  939. form.search_form input[type="submit"],
  940. form.search_form input[type="button"] {
  941. cursor: pointer;
  942. }
  943. #index .sidebar .stats.nobullet a {
  944. background: inherit;
  945. font-weight: inherit;
  946. font-size: inherit;
  947. }
  948. #index .sidebar .stats.nobullet a:hover,
  949. #index .sidebar .stats.nobullet a:focus {
  950. color: inherit;
  951. }
  952. .hidden,
  953. div#quickreplytext br {
  954. display: none;
  955. }
  956. #request_table .rowa td > a {
  957. font-weight: 600;
  958. }
  959. .big_info .group_info.clear span {
  960. float: right;
  961. }
  962. #forums .forum_list tr td:nth-child(2n) a,
  963. table.collage_table tr td:nth-of-type(2) a {
  964. font-weight: 600;
  965. }
  966. .sidebar .navigation_list li {
  967. display: block;
  968. }
  969. .sidebar form.search_form {
  970. background: inherit;
  971. }
  972. #inbox .box {
  973. margin-bottom: 20px;
  974. }
  975. #inbox .box:last-of-type {
  976. margin-bottom: 0;
  977. }
  978. #userinfo .brackets:before,
  979. #userinfo .brackets:after {
  980. display: none;
  981. }
  982. #header {
  983. -webkit-font-smoothing: antialiased !important;
  984. }
  985. .sidebar select,
  986. #inbox form.send_form #quickpost {
  987. margin-bottom: 5px;
  988. }
  989. .lightbox {
  990. position: fixed;
  991. text-align: center;
  992. top: 5%;
  993. left: 5%;
  994. width: 90%;
  995. height: 90%;
  996. z-index: 1002;
  997. overflow: auto;
  998. z-index: 2001;
  999. }
  1000. .lightbox img {
  1001. max-width: 100%;
  1002. max-height: 100%;
  1003. z-index: -1;
  1004. }
  1005. .curtain {
  1006. position: fixed;
  1007. top: 0;
  1008. left: 0;
  1009. width: 100%;
  1010. height: 100%;
  1011. -moz-opacity: 0.9;
  1012. opacity: 0.9;
  1013. filter: alpha(opacity=90);
  1014. }
  1015. li.graph,
  1016. #poll_options li {
  1017. display: block;
  1018. padding-bottom: 5px;
  1019. }
  1020. input[type="text"],
  1021. input[type="email"] {
  1022. margin: 1px;
  1023. }
  1024. .noty_message,
  1025. ul#noty_bottomRight_layout_container li,
  1026. .noty_buttons {
  1027. border: none !important;
  1028. -webkit-border-radius: 1px !important;
  1029. -moz-border-radius: 1px !important;
  1030. border-radius: 1px !important;
  1031. }
  1032. select {
  1033. border-radius: 1px;
  1034. -webkit-border-radius: 1px;
  1035. -moz-border-radius: 1px;
  1036. }
  1037. #searchbars li input,
  1038. .search-bar li input {
  1039. border-radius: inherit;
  1040. }
  1041. li#searchbar_torrents:first-of-type form:before,
  1042. div#searchbars ul li:first-of-type form:before,
  1043. div.search-bar ul li:first-of-type form:before {
  1044. content: "\f002";
  1045. display: inline;
  1046. font-family: FontAwesome;
  1047. float: left;
  1048. width: 16px;
  1049. height: 25px;
  1050. vertical-align: middle;
  1051. line-height: 23px;
  1052. background: transparent;
  1053. background-color: transparent;
  1054. margin-right: 7px;
  1055. font-size: 16px;
  1056. }
  1057. div#searchbars,
  1058. div#searchbars ul,
  1059. div#searchbars ul li,
  1060. div#searchbars form,
  1061. div.search-bar,
  1062. div.search-bar ul,
  1063. div.search-bar ul li,
  1064. div.search-bar form {
  1065. background: transparent;
  1066. background-color: transparent;
  1067. }
  1068. li#searchbar_torrents {
  1069. margin-left: -23px;
  1070. }
  1071. form.search_form tr td strong {
  1072. font-weight: 400;
  1073. }
  1074. input {
  1075. border: none;
  1076. }
  1077. #header form.search_form {
  1078. width: inherit !important;
  1079. margin: 0 auto;
  1080. }
  1081. .box h3,
  1082. .header h1,
  1083. .header h2,
  1084. .header h3,
  1085. #forums h2 {
  1086. font-weight: 600;
  1087. }
  1088. .box h3,
  1089. .header h1,
  1090. .header h2,
  1091. .header h3,
  1092. #forums h2 {
  1093. font-size: 1.125rem;
  1094. }
  1095. table#forum_search_cat_list tr td {
  1096. display: inline-block;
  1097. }
  1098. table.layout.cat_list.ft_cat_list,
  1099. table.layout.cat_list {
  1100. text-align: center;
  1101. }
  1102. table#forum_search_cat_list {
  1103. text-align: initial;
  1104. }
  1105. #header b,
  1106. #header strong,
  1107. #torrent_table b,
  1108. #torrent_table strong,
  1109. .group_torrent b,
  1110. .group_torrent strong {
  1111. font-weight: 400;
  1112. }
  1113. .box.news_post,
  1114. .box#recommended {
  1115. font-size: 14px;
  1116. }
  1117. textarea[name="comment"],
  1118. input[name="subject"],
  1119. textarea[name="body"],
  1120. input[type="text"] {
  1121. border: 1px solid transparent !important;
  1122. }
  1123. textarea[name="comment"]:hover,
  1124. input[name="subject"]:hover,
  1125. textarea[name="body"]:hover,
  1126. input[type="text"]:hover {
  1127. border: 1px solid #444 !important;
  1128. }
  1129. textarea[name="body"]:focus,
  1130. textarea[name="comment"]:focus,
  1131. input[name="subject"]:focus,
  1132. input[type="text"]:focus {
  1133. border: 1px solid #444 !important;
  1134. }
  1135. .autocomplete-suggestions {
  1136. border: none;
  1137. font-size: 0.6875rem;
  1138. }
  1139. .autocomplete-selected {
  1140. border: none;
  1141. font-size: 0.6875rem;
  1142. }
  1143. div.noty_bar {
  1144. border: 1px solid #444;
  1145. }
  1146. div#last5 a strong {
  1147. margin-top: 5px;
  1148. display: block;
  1149. }
  1150. table {
  1151. width: 100%;
  1152. }
  1153. div#latest5normal:after,
  1154. div#latest5internals:after,
  1155. div#latest5userreleases:after {
  1156. content: "";
  1157. display: block;
  1158. clear: both;
  1159. }
  1160. tr.cat_list {
  1161. text-align: center;
  1162. }
  1163. div#alerts {
  1164. width: 100%;
  1165. }
  1166. .forum-post__heading,
  1167. .forum_post tr.colhead_dark,
  1168. .forum_post .colhead_dark td {
  1169. max-height: 32px;
  1170. padding-top: 0;
  1171. padding-bottom: 0;
  1172. height: 32px;
  1173. line-height: 32px;
  1174. }
  1175. .forum_post .colhead_dark td,
  1176. .forum_post tr.colhead_dark,
  1177. #latest5 .head.colhead_dark,
  1178. a[onclick*="toggle"] {
  1179. font-weight: inherit;
  1180. }
  1181. a[onclick*="toggle"] {
  1182. font-weight: initial !important;
  1183. }
  1184. #wiki .main_column .box li,
  1185. #wiki .main-column .box li {
  1186. display: block;
  1187. }
  1188. #last5 img {
  1189. width: 100%;
  1190. height: auto;
  1191. }
  1192. td.nobr {
  1193. white-space: nowrap;
  1194. }
  1195. ul.stats.nobullet li {
  1196. display: block;
  1197. }
  1198. p {
  1199. margin: 0;
  1200. }
  1201. .poll .graph .left_poll {
  1202. width: 9px;
  1203. background: url(../../img/poll_left.png) top left no-repeat;
  1204. }
  1205. .poll .graph span {
  1206. display: block;
  1207. height: 19px;
  1208. float: left;
  1209. }
  1210. .poll .graph .center_poll {
  1211. background: url(../../img/poll_middle.png) top left repeat-x;
  1212. }
  1213. .poll .graph .right_poll {
  1214. width: 11px;
  1215. background: url(../../img/poll_right.png) top left no-repeat;
  1216. }
  1217. ul.poll.nobullet li {
  1218. display: block;
  1219. clear: both;
  1220. }
  1221. div.pad#threadpoll {
  1222. margin-bottom: 5px;
  1223. }
  1224. div.pad#threadpoll p strong {
  1225. clear: both;
  1226. display: block;
  1227. }
  1228. table.torrent_table td {
  1229. max-width: 640px;
  1230. }
  1231. .signature {
  1232. margin-top: 10px;
  1233. }
  1234. a[rel="noreferrer"] img[style="max-width: 500px;"] {
  1235. max-width: 32.86%;
  1236. margin: 0;
  1237. }
  1238. .torrent_table blockquote {
  1239. margin: inherit;
  1240. }
  1241. blockquote div[style="margin:20px; margin-top:5px"] {
  1242. margin: 5px 0 0 !important;
  1243. }
  1244. table#collage_table {
  1245. max-width: 100%;
  1246. text-align: center;
  1247. width: 100%;
  1248. }
  1249. table#collage_table img {
  1250. min-width: 100%;
  1251. }
  1252. #user .main_column table[cellpadding="0"] tr td,
  1253. div.body table tbody tr td[style="width: 20%"],
  1254. #user .main-column table[cellpadding="0"] tr td,
  1255. div.body table tbody tr td[style="width: 20%"] {
  1256. width: 20%;
  1257. }
  1258. #user .main_column table[cellpadding="0"] tr td a,
  1259. #user .main_column table[cellpadding="0"] tr td a img,
  1260. #user .main-column table[cellpadding="0"] tr td a,
  1261. #user .main-column table[cellpadding="0"] tr td a img {
  1262. width: 100%;
  1263. }
  1264. #torrents .forum_post img {
  1265. max-width: 100%;
  1266. }
  1267. div#last5:last-of-type {
  1268. margin-right: 0;
  1269. }
  1270. a img {
  1271. -webkit-transition: all 0.25s linear;
  1272. transition: all 0.25s linear;
  1273. -webkit-transform: translateZ(0);
  1274. transform: translateZ(0);
  1275. }
  1276. a:hover img {
  1277. filter: alpha(opacity=70);
  1278. -moz-opacity: 0.7;
  1279. -khtml-opacity: 0.7;
  1280. opacity: 0.7;
  1281. }
  1282. #user .main_column table[cellpadding="0"] tr td,
  1283. #user .main-column table[cellpadding="0"] tr td {
  1284. float: left;
  1285. display: block;
  1286. /* vertical-align: top; */
  1287. }
  1288. #user .main_column table[cellpadding="0"] tr td[colspan="5"],
  1289. #user .main-column table[cellpadding="0"] tr td[colspan="5"] {
  1290. width: 100%;
  1291. }
  1292. .torrent_table blockquote,
  1293. .torrent_table blockquote span,
  1294. .log3,
  1295. .log5,
  1296. tr.pad[id*="torrent_"],
  1297. .torrent_info_row {
  1298. font-family: "Inconsolata", monospace;
  1299. }
  1300. tr.pad[id*="torrent_"] .linkbox,
  1301. tr.pad[id*="torrent_"] h2,
  1302. tr.pad[id*="torrent_"] h3,
  1303. tr.pad[id*="torrent_"] h1,
  1304. tr.pad[id*="torrent_"] h4 {
  1305. font-family: "Proxima Nova", "Lato", "Segoe UI", sans-serif;
  1306. font-size: 14px;
  1307. }
  1308. tr.pad[id*="torrent_"] .colhead_dark,
  1309. .forum-post__heading,
  1310. tr.pad[id*="torrent_"] .colhead {
  1311. font-family: "Proxima Nova", "Lato", "Segoe UI", sans-serif;
  1312. font-size: 14px;
  1313. }
  1314. tr.pad[id*="torrent_"] ul,
  1315. tr.pad[id*="torrent_"] h3 {
  1316. text-align: center;
  1317. }
  1318. #forums a[rel="noreferrer"] img[style="max-width: 500px;"] {
  1319. width: inherit;
  1320. }
  1321. .toggleable-search-form__toggler-container,
  1322. #blog .pad,
  1323. #index .main_column .box,
  1324. #blog .pad,
  1325. #index .main-column .box,
  1326. .box.filter_torrents .head,
  1327. .colhead td,
  1328. .colhead_dark td,
  1329. tr.colhead,
  1330. tr.colhead_dark,
  1331. #inbox .box .head,
  1332. #inbox .box .head,
  1333. #reply_box h3,
  1334. #inbox form .send_form #quickpost h3,
  1335. #blog .head,
  1336. #wiki .main_column .box,
  1337. #wiki .main-column .box,
  1338. thead th,
  1339. .forum-post__heading,
  1340. #wiki .main-column {
  1341. font-size: 0.875rem;
  1342. }
  1343. #torrents a[rel="noreferrer"] img[style="max-width: 500px;"] {
  1344. max-width: 32.673%;
  1345. }
  1346. .submit span[style="float:left;"] {
  1347. display: inline;
  1348. float: none !important;
  1349. font-size: 12px;
  1350. }
  1351. .filter_torrents div.submit input {
  1352. display: inline;
  1353. margin: 5px 0;
  1354. }
  1355. table.cat_list,
  1356. tr#edition_expand {
  1357. text-align: center;
  1358. }
  1359. #staff .box.pad {
  1360. background: transparent !important;
  1361. }
  1362. #forums table.cat_list {
  1363. text-align: inherit;
  1364. }
  1365. #header li {
  1366. display: inline-block;
  1367. }
  1368. #header #nav_more ul li,
  1369. #header .search-bar__results__list-item {
  1370. display: inherit;
  1371. }
  1372. table#torrent_details li,
  1373. .forum_post li,
  1374. .news_post .pad li {
  1375. display: list-item;
  1376. }
  1377. .show_torrents_link {
  1378. border: none;
  1379. width: 28px;
  1380. height: 28px;
  1381. display: block;
  1382. }
  1383. a[onclick]:focus {
  1384. outline: 0;
  1385. background: transparent;
  1386. }
  1387. #content .sidebar ul.nobullet h2 {
  1388. text-align: inherit !important;
  1389. }
  1390. #content .thin .sidebar .box.box_image div[style="text-align: center; padding: 10px 0px;"] {
  1391. margin: -6px -10px -10px -10px !important;
  1392. padding: 0 !important;
  1393. }
  1394. #top10 #content .thin p {
  1395. width: 100%;
  1396. text-align: center;
  1397. display: block;
  1398. }
  1399. #top10 #content .thin p strong,
  1400. #top10 #content .thin p small {
  1401. display: inline-block;
  1402. font-size: 0.875rem;
  1403. }
  1404. #coverart ul.collage_images li {
  1405. width: 20%;
  1406. height: auto;
  1407. display: inline-block;
  1408. vertical-align: top;
  1409. float: none;
  1410. }
  1411. #coverart ul.collage_images li img,
  1412. #coverart ul.collage_images li a {
  1413. min-width: 100%;
  1414. width: 100%;
  1415. height: auto;
  1416. }
  1417. #coverart ul.collage_images {
  1418. width: 100%;
  1419. }
  1420. #content li {
  1421. list-style-type: inherit;
  1422. list-style-position: inside;
  1423. }
  1424. #forums #content li {
  1425. padding-left: 10px;
  1426. }
  1427. #rules #content li {
  1428. display: list-item;
  1429. }
  1430. #content .thin div[style="height:140px;"] {
  1431. height: auto !important;
  1432. }
  1433. .filter_torrents .box.pad.center {
  1434. background-color: transparent;
  1435. background: transparent;
  1436. }
  1437. .linkbox,
  1438. .pagination.pagination--top.js-pagination,
  1439. .thin > h2,
  1440. .header > h2,
  1441. .thin > h3,
  1442. .header > .linkbox,
  1443. .filter_torrents > h3,
  1444. .pagination.pagination--bottom.js-pagination {
  1445. text-align: center !important;
  1446. }
  1447. h2,
  1448. h3 {
  1449. text-align: center;
  1450. }
  1451. .forum_post td a img:after {
  1452. content: " ";
  1453. width: 100%;
  1454. display: block;
  1455. clear: both;
  1456. }
  1457. .forum_post td a img {
  1458. display: inline-block;
  1459. vertical-align: middle;
  1460. }
  1461. .torrent_info_row .linkbox {
  1462. font-family: "Proxima Nova", "Lato", "Segoe UI", sans-serif;
  1463. font-size: 0.75rem;
  1464. }
  1465. .torrent_info_row .bbcode-table-guard a {
  1466. width: 100%;
  1467. text-align: center;
  1468. }
  1469. .torrent_info_row > td {
  1470. padding: 15px;
  1471. box-sizing: border-box;
  1472. }
  1473. .torrent_info_row .bbcode-table-guard a {
  1474. padding: 5px 0;
  1475. display: inline-block;
  1476. margin: 0 auto;
  1477. }
  1478. .forum_post td.body {
  1479. padding-right: 10px;
  1480. padding-bottom: 10px;
  1481. }
  1482. .linkbox a.brackets {
  1483. padding-bottom: 5px;
  1484. }
  1485. .linkbox a.brackets {
  1486. display: inline-block;
  1487. }
  1488. a.new-subscriptions {
  1489. font-weight: normal;
  1490. }
  1491. .forum-post__heading img {
  1492. max-height: 13px;
  1493. }
  1494. span.user_title {
  1495. max-height: 32px;
  1496. }
  1497. body {
  1498. background: #e1e3e4;
  1499. color: #313131;
  1500. }
  1501. .torrent td,
  1502. pre,
  1503. blockquote {
  1504. color: #777 !important;
  1505. }
  1506. .signature {
  1507. border-top: 1px dashed rgba(121, 121, 121, 0.5);
  1508. }
  1509. #forums td {
  1510. color: #777;
  1511. }
  1512. #header {
  1513. color: #9a9a9a;
  1514. }
  1515. #header a {
  1516. color: #f7f7f7;
  1517. }
  1518. tr.inbox-message--unread td a:hover,
  1519. tr.unreadpm a:hover {
  1520. color: #f7f7f7;
  1521. }
  1522. body #wrapper div#header {
  1523. background-color: #1a1a1a;
  1524. }
  1525. .sidebar .box,
  1526. .news_post .pad,
  1527. .main_column .box,
  1528. .main_column2 .box,
  1529. #scontent .box {
  1530. background: #d9dbdb;
  1531. }
  1532. #header a:hover,
  1533. #header a:focus {
  1534. color: #3c948b;
  1535. }
  1536. #forums .forum_post td,
  1537. #forums tr.colhead {
  1538. color: #313131;
  1539. }
  1540. #forums tr.colhead td,
  1541. #forums .colhead_dark,
  1542. #forums .colhead_dark td {
  1543. color: #f7f7f7;
  1544. }
  1545. td a {
  1546. color: #313131;
  1547. }
  1548. .head a {
  1549. color: #313131;
  1550. }
  1551. #summary .ui-widget-header {
  1552. border: none;
  1553. }
  1554. #torrents .torrent_table a[onclick*="toggle"] strong {
  1555. color: #000;
  1556. }
  1557. #torrents .torrent_table a[onclick*="toggle"],
  1558. tr.recentinternalrow > td:first-child,
  1559. a[href*="torrents.php?id"],
  1560. a[href*="torrents.php?id"][title="View Torrent"].season:hover,
  1561. a[href*="torrents.php?id"][title="View Torrent"].episode {
  1562. color: #777;
  1563. }
  1564. .ui-tabs .ui-tabs-nav li.ui-state-default,
  1565. div.ui-tabs-vertical .ui-tabs-nav li.ui-state-default {
  1566. background: #bbb !important;
  1567. }
  1568. td,
  1569. form.search_form,
  1570. .box.pad,
  1571. #blog .box,
  1572. div.ui-tabs-vertical,
  1573. .box.thin.clear {
  1574. background: #d9dbdb;
  1575. }
  1576. .box.filter_torrents .head,
  1577. .colhead td,
  1578. .colhead_dark td,
  1579. tr.colhead,
  1580. tr.colhead_dark,
  1581. #inbox .box .head,
  1582. #inbox .box .head,
  1583. #reply_box h3,
  1584. #inbox form .send_form #quickpost h3,
  1585. #blog .head {
  1586. color: #9a9a9a;
  1587. border-bottom: 2px solid #1a1a1a;
  1588. }
  1589. div#quickreplytext {
  1590. padding: 15px;
  1591. background: #d0d0d0;
  1592. }
  1593. #staffpm form#messageform,
  1594. #staffpm #inbox h3,
  1595. h3,
  1596. h2 {
  1597. color: inherit;
  1598. border: inherit;
  1599. }
  1600. .group td {
  1601. background: #d0d0d0;
  1602. }
  1603. td {
  1604. padding: 5px;
  1605. border-bottom: 1px solid #d0d0d0;
  1606. }
  1607. .holder {
  1608. background: #1a1a1a;
  1609. }
  1610. #menu {
  1611. background: #1d1d1d;
  1612. background: rgba(0, 0, 0, 0.6);
  1613. border: 1px solid transparent;
  1614. }
  1615. #menu > ul {
  1616. display: flex;
  1617. width: 850px;
  1618. margin: 0 auto;
  1619. }
  1620. #menu > ul > li {
  1621. position: relative;
  1622. flex: 1 1 auto;
  1623. }
  1624. .nav_dropdown > div {
  1625. position: absolute;
  1626. background-color: rgba(0, 0, 0, 0.6);
  1627. width: 100%;
  1628. z-index: 99999;
  1629. margin-top: 14px;
  1630. left: 0;
  1631. }
  1632. #nav_links > #links_menu {
  1633. width: 120px;
  1634. margin-left: -68px;
  1635. }
  1636. .nav_dropdown > div > a {
  1637. display: none;
  1638. height: 32px;
  1639. line-height: 32px;
  1640. }
  1641. .nav_dropdown:hover > div > a {
  1642. display: block;
  1643. }
  1644. #userinfo_minor a,
  1645. #menu ul > li > a {
  1646. color: #fff;
  1647. }
  1648. #header div#searchbars {
  1649. background: #131313;
  1650. padding: 4.5px 0;
  1651. display: flex;
  1652. width: 850px;
  1653. margin: 0 auto;
  1654. }
  1655. div#ft_container {
  1656. background: #d0d0d0;
  1657. }
  1658. #taglist {
  1659. text-align: center;
  1660. font-size: 0.7187rem;
  1661. background: #d9dbdb;
  1662. }
  1663. table.layout {
  1664. width: 100%;
  1665. }
  1666. blockquote {
  1667. border: 1px dashed rgba(121, 121, 121, 0.5);
  1668. }
  1669. span[style="color: grey;"] {
  1670. color: #333 !important;
  1671. }
  1672. .box.torrent_description {
  1673. background: #d9dbdb;
  1674. }
  1675. form.search_form input {
  1676. border: 1px solid transparent;
  1677. }
  1678. form.search_form input {
  1679. background: #b5b5b5;
  1680. color: #313131;
  1681. border: 1px solid transparent;
  1682. }
  1683. select {
  1684. border: 1px solid transparent;
  1685. }
  1686. select {
  1687. background: #b5b5b5;
  1688. color: #313131;
  1689. border: 1px solid transparent;
  1690. }
  1691. #header form.search_form input:hover,
  1692. #header select:hover {
  1693. background: #1f1f1f;
  1694. color: #f7f7f7;
  1695. border: 1px solid #444;
  1696. }
  1697. #header form.search_form input:focus,
  1698. #header select:focus,
  1699. #header input:hover,
  1700. #header input:focus {
  1701. background: #1f1f1f;
  1702. color: #f7f7f7;
  1703. border: 1px solid #444 !important;
  1704. }
  1705. form.search_form input:hover,
  1706. select:hover {
  1707. background: #a9a9a9;
  1708. color: #f4f4f4;
  1709. border: 1px solid #a2a2a2;
  1710. }
  1711. form.search_form input:focus,
  1712. select:focus {
  1713. background: #a9a9a9;
  1714. color: #333;
  1715. border: 1px solid #a2a2a2;
  1716. }
  1717. #header input {
  1718. border: 1px solid transparent;
  1719. }
  1720. #header input {
  1721. background: #333;
  1722. color: #5a5a5a;
  1723. border: 1px solid transparent;
  1724. }
  1725. #inbox input[type="search"] {
  1726. color: inherit;
  1727. }
  1728. input[type="submit"],
  1729. input[type="button"] {
  1730. color: #f7f7f7;
  1731. }
  1732. input[type="submit"]:hover,
  1733. input[type="submit"]:focus,
  1734. input[type="button"]:hover,
  1735. input[type="button"]:focus {
  1736. color: #f7f7f7;
  1737. background-color: #777;
  1738. }
  1739. #taglist tr td a,
  1740. .tags a,
  1741. .sidebar .stats.nobullet a {
  1742. background: #9c9c9c;
  1743. color: #f4f4f4;
  1744. }
  1745. #taglist tr td a:hover,
  1746. #taglist tr td a:focus,
  1747. .tags a:hover,
  1748. .tags a:focus,
  1749. .sidebar .stats.nobullet a:hover,
  1750. .sidebar .stats.nobullet a:focus {
  1751. background: #333;
  1752. color: #f4f4f4;
  1753. }
  1754. .main_column .box .head.colhead_dark,
  1755. .box.news_post .head {
  1756. border-bottom: 1px solid #2b2b2b;
  1757. }
  1758. .sidebar .stats.nobullet a.brackets {
  1759. background: inherit !important;
  1760. color: inherit;
  1761. }
  1762. .box_info .stats.nobullet li a {
  1763. background: inherit;
  1764. font-size: inherit;
  1765. color: #3c948b !important;
  1766. }
  1767. .box_info .stats.nobullet li a:hover {
  1768. background: inherit;
  1769. font-size: inherit;
  1770. color: #313131;
  1771. }
  1772. .sidebar .box .head,
  1773. .main_column .box .head.colhead_dark,
  1774. .box.news_post .head,
  1775. tr.colhead,
  1776. tr.colhead_dark,
  1777. .head.colhead_dark,
  1778. .main_column .box .head {
  1779. border-bottom: 1px solid #2b2b2b;
  1780. }
  1781. td.read:before {
  1782. color: #ababab;
  1783. }
  1784. td.read_sticky:before {
  1785. color: #ababab;
  1786. }
  1787. td.read_locked:before {
  1788. color: #ababab;
  1789. }
  1790. td.unread_locked:before {
  1791. color: #3c948b;
  1792. }
  1793. td.read_locked_sticky:before {
  1794. color: #ababab;
  1795. }
  1796. td.unread_locked_sticky:before {
  1797. color: #3c948b;
  1798. }
  1799. .submit.ft_submit span {
  1800. color: #555;
  1801. }
  1802. form.search_form input[type="submit"]:hover,
  1803. form.search_form input[type="button"]:hover {
  1804. background: #777;
  1805. color: #f4f4f4;
  1806. border: 1px solid #777;
  1807. }
  1808. form.search_form input[type="submit"],
  1809. form.search_form input[type="button"] {
  1810. color: #f4f4f4;
  1811. }
  1812. .group_info > a:nth-child(2n):hover,
  1813. .group_info > a:nth-child(3n):hover {
  1814. color: #313131;
  1815. }
  1816. #index .sidebar .stats.nobullet a {
  1817. background: inherit;
  1818. }
  1819. #index .sidebar .stats.nobullet a:hover,
  1820. #index .sidebar .stats.nobullet a:focus {
  1821. color: inherit;
  1822. }
  1823. .forum_post a:hover,
  1824. .forum_post a:focus,
  1825. #summary .ui-widget-content {
  1826. color: #313131;
  1827. }
  1828. li#nav_subscriptions.new-subscriptions a:hover {
  1829. color: #f7f7f7 !important;
  1830. }
  1831. .box.filter_torrents .head a,
  1832. .forum_post .colhead a,
  1833. .forum_post .colhead_dark a,
  1834. #inbox .box .head a {
  1835. color: #313131;
  1836. }
  1837. .hide_torrents {
  1838. width: 28px;
  1839. height: 28px;
  1840. background: url(../../img/d-hide.png) no-repeat center center;
  1841. -moz-opacity: 0.5;
  1842. opacity: 0.5;
  1843. filter: alpha(opacity=50);
  1844. background-size: 10px 10px;
  1845. }
  1846. .show_torrents {
  1847. width: 28px;
  1848. height: 28px;
  1849. background: url(../../img/d-show.png) no-repeat center center;
  1850. -moz-opacity: 0.5;
  1851. opacity: 0.5;
  1852. filter: alpha(opacity=50);
  1853. background-size: 10px 10px;
  1854. }
  1855. #inbox .box .body,
  1856. #inbox .box #buttons .field_div.textarea_wrap,
  1857. #inbox .box {
  1858. background: #d0d0d0;
  1859. }
  1860. .lightbox img {
  1861. background-color: transparent;
  1862. }
  1863. .curtain {
  1864. background: #111 50% 0 no-repeat fixed;
  1865. }
  1866. textarea,
  1867. input {
  1868. background-color: #b5b5b5;
  1869. }
  1870. .noty_message,
  1871. ul#noty_bottomRight_layout_container li,
  1872. .noty_buttons {
  1873. background-color: #d9dbdb;
  1874. background: #d9dbdb !important;
  1875. color: #313131 !important;
  1876. border: none !important;
  1877. }
  1878. li#searchbar_torrents:first-of-type form:before,
  1879. div#searchbars ul li:first-of-type form:before {
  1880. background: transparent;
  1881. background-color: transparent;
  1882. color: #717171;
  1883. }
  1884. div#searchbars,
  1885. div#searchbars ul,
  1886. div#searchbars ul li,
  1887. div#searchbars form {
  1888. background: transparent;
  1889. background-color: transparent;
  1890. }
  1891. textarea[name="comment"],
  1892. input[name="subject"],
  1893. textarea[name="body"],
  1894. input[type="text"] {
  1895. background: #b5b5b5;
  1896. color: #5a5a5a;
  1897. border: 1px solid transparent !important;
  1898. }
  1899. textarea[name="comment"]:hover,
  1900. input[name="subject"]:hover,
  1901. textarea[name="body"]:hover,
  1902. input[type="text"]:hover {
  1903. background: #a9a9a9;
  1904. color: #f7f7f7;
  1905. border: 1px solid #9e9e9e !important;
  1906. }
  1907. textarea[name="body"]:focus,
  1908. textarea[name="comment"]:focus,
  1909. input[name="subject"]:focus,
  1910. input[type="text"]:focus {
  1911. background: #a9a9a9;
  1912. color: #333;
  1913. border: 1px solid #9e9e9e !important;
  1914. }
  1915. .autocomplete-suggestions strong {
  1916. color: #f7f7f7;
  1917. }
  1918. .autocomplete-suggestions {
  1919. background: #131313;
  1920. color: #9a9a9a;
  1921. }
  1922. .autocomplete-selected {
  1923. background: #222 !important;
  1924. color: #9a9a9a;
  1925. background-color: #1f1f1f !important;
  1926. }
  1927. div.noty_bar {
  1928. border: 1px solid #d0d0d0;
  1929. }
  1930. .filter_torrents .box.pad {
  1931. background: #d0d0d0;
  1932. }
  1933. .forum_post tr.colhead_dark.notify_forums a,
  1934. .forum_post tr.colhead a {
  1935. color: #f7f7f7;
  1936. }
  1937. .staff_post tr.colhead_dark > td,
  1938. .staff_post tr.colhead_dark {
  1939. background: #d476d1;
  1940. }
  1941. .forum_post tr.colhead_dark > td,
  1942. .forum_post tr.colhead_dark {
  1943. border-bottom: none !important;
  1944. }
  1945. .forum_post.forum_unread tr.colhead_dark {
  1946. border-top: 2px solid #76efe4;
  1947. }
  1948. .forum_post.staff_post.forum_unread tr.colhead_dark {
  1949. border-top: 2px solid #b159a6;
  1950. }
  1951. table#torrent_table strong {
  1952. color: #313131;
  1953. }
  1954. .box.filter_torrents .head,
  1955. .colhead td,
  1956. .colhead_dark td,
  1957. tr.colhead,
  1958. tr.colhead_dark,
  1959. #inbox .box .head,
  1960. #inbox .box .head,
  1961. #reply_box h3,
  1962. #inbox form .send_form #quickpost h3,
  1963. .sidebar .box .head,
  1964. .main_column .box .head.colhead_dark,
  1965. .box.news_post .head,
  1966. tr.colhead,
  1967. tr.colhead_dark,
  1968. .head.colhead_dark,
  1969. .main_column .box .head {
  1970. color: #f7f7f7;
  1971. }
  1972. div.pad#threadpoll {
  1973. background: #d0d0d0;
  1974. }
  1975. div.pad#threadpoll p strong {
  1976. color: #313131;
  1977. }
  1978. .thin h2,
  1979. .thin h3,
  1980. #content h2 {
  1981. color: #313131;
  1982. }
  1983. #content .thin div[style="height:140px;"] {
  1984. background-color: #d0d0d0;
  1985. }
  1986. #index div#last5t > .head.colhead_dark:first-child {
  1987. margin-bottom: 10px !important;
  1988. }
  1989. .autocomplete-suggestion {
  1990. padding: 5px;
  1991. }
  1992. .tag_parody {
  1993. background: #d2aa4b !important;
  1994. }
  1995. .tag_character {
  1996. background: #689f78 !important;
  1997. }
  1998. .tag_female {
  1999. background: #e993e9 !important;
  2000. }
  2001. .tag_male {
  2002. background: #5959f9 !important;
  2003. }
  2004. .collage_image:hover {
  2005. box-shadow: 0px 0px 0px 3px #5aada5;
  2006. position: relative;
  2007. }
  2008. .bbcode_bar .emoji_box {
  2009. background-color: #e1e3e4;
  2010. border: 1px solid #d0d0d0;
  2011. }
  2012. /* Fixed Header addition */
  2013. body.style_fixed_header #menu,
  2014. body.style_fixed_header .main-menu {
  2015. position: fixed;
  2016. }
  2017. body.style_fixed_header #settings_sections.fixed {
  2018. top: 52px;
  2019. }