123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442 |
- #header a:hover,
- #header a:focus,
- ul.ui-autocomplete.ui-menu.ui-widget li a:hover,
- ul.ui-autocomplete.ui-menu.ui-widget li a:focus,
- div#footer p:after {
- color: #32867d;
- }
-
- a,
- tr.unreadpm a,
- #summary .ui-widget-content a,
- #wrapper .alert-bars a,
- tr.inbox-message--unread td a,
- tr.unreadpm a {
- color: #32867d;
- }
-
- a:hover,
- a[href*="torrents.php?id"]:hover,
- .colhead td a:hover,
- #content .forum_post .colhead_dark a:hover,
- #content .forum_post .colhead_dark a:focus,
- #wrapper .alert-bars a:hover {
- color: #000;
- }
-
- td a:hover,
- table#torrent_table a[href*="torrents.php?torrentid"] strong,
- a[href*="torrents.php?id"][title="View Torrent"],
- a[href*="torrents.php?id"]:hover,
- #torrents .torrent_table a[onclick*="toggle"]:hover,
- #header .new-subscriptions a {
- color: #32867d;
- }
-
- body #wrapper div#header {
- background-color: #1a1a1a;
- }
-
- #userinfo_minor a:hover,
- #menu ul > li > a:hover {
- color: #32867d;
- }
-
- #userinfo_minor > li > ul {
- display: none;
- background: #1a1a1a;
- padding: 6px 10px;
- margin-top: 7px;
- position: absolute;
- }
-
- #userinfo_minor > li > ul > li {
- display: block;
- }
-
- #header a.username {
- color: #32867d;
- }
-
- input[type="submit"],
- input[type="button"] {
- background: #6cb3ae;
- }
-
- ::-webkit-input-placeholder {
- color: #848484;
- }
-
- ::-moz-placeholder {
- color: #848484;
- }
-
- :-ms-input-placeholder {
- color: #848484;
- }
-
- #taglist tr td a,
- .tags a,
- .sidebar .stats.nobullet a {
- background: #9c9c9c;
- }
-
- .box_info .stats.nobullet li a {
- color: #32867d !important;
- }
-
- #header .alertbar a:hover {
- color: #f7f7f7;
- }
-
- td.unread:before {
- color: #32867d;
- }
-
- td.unread_sticky:before {
- color: #32867d;
- }
-
- td.unread_locked:before {
- color: #32867d;
- }
-
- td.unread_locked_sticky:before {
- color: #32867d;
- }
-
- input[type="submit"],
- input[type="button"] {
- background: #6cb3ae;
- }
-
- form.search_form input[type="submit"],
- form.search_form input[type="button"] {
- background: #6cb3ae;
- }
-
- .group_info > a:nth-child(2n),
- .group_info > a:nth-child(3n) {
- color: #32867d;
- }
-
- #index .sidebar .stats.nobullet a {
- background: inherit;
- color: #32867d;
- }
-
- .forum_post a {
- color: #32867d;
- }
-
- li#nav_subscriptions.new-subscriptions a {
- color: #3c9454 !important;
- }
-
- .box.filter_torrents .head a:hover,
- .box.filter_torrents .head a:focus,
- .forum_post .colhead a:hover,
- .forum_post .colhead_dark a:focus,
- #inbox .box .head a:focus,
- #inbox .box .head a:hover {
- color: #32867d;
- }
-
- #request_table .row td:first-of-type > a:nth-child(2n) {
- color: #32867d;
- }
-
- span.r99,
- .r09,
- .r10,
- .r20,
- .r30,
- .r40,
- .r50 {
- color: #3c9454;
- }
-
- .box.filter_torrents .head,
- .colhead td,
- .colhead_dark td,
- tr.colhead,
- tr.colhead_dark,
- #inbox .box .head,
- #inbox .box .head,
- #reply_box h3,
- #inbox form .send_form #quickpost h3,
- .sidebar .box .head,
- .main_column .box .head.colhead_dark,
- .box.news_post .head,
- tr.colhead,
- tr.colhead_dark,
- .head.colhead_dark,
- .main_column .box .head {
- border-bottom: 2px solid #45847e !important;
- }
-
- #header > #menu ul > li.active > a {
- color: #32867d;
- }
-
- .alertbar a {
- color: #32867d;
- }
-
- .alertbar.modbar a {
- margin: 0px 5px;
- }
-
- .box.filter_torrents .head,
- .colhead td,
- .colhead_dark td,
- tr.colhead,
- tr.colhead_dark,
- #inbox .box .head,
- #inbox .box .head,
- #reply_box h3,
- #inbox form .send_form #quickpost h3,
- .sidebar .box .head,
- .main_column .box .head.colhead_dark,
- .box.news_post .head,
- tr.colhead,
- tr.colhead_dark,
- .head.colhead_dark,
- .main_column .box .head {
- background: #5aada5;
- }
-
- .box.filter_torrents .head,
- .colhead td,
- .colhead_dark td,
- tr.colhead,
- tr.colhead_dark,
- #inbox .box .head,
- #inbox .box .head,
- #reply_box h3,
- #inbox form .send_form #quickpost h3,
- #blog .head {
- background: #5aada5;
- }
-
- .ui-widget-content a:hover {
- color: #70b3ab !important;
- }
-
- *:before,
- *:after {
- -webkit-box-sizing: border-box;
- -moz-box-sizing: border-box;
- box-sizing: border-box;
- }
-
- * {
- padding: 0;
- margin: 0;
- }
-
- ul#userinfo_minor > li > a {
- padding: 0 20px;
- }
-
- h2 {
- font-size: 0.9rem;
- }
-
- .torrent_info_row .preformatted-text--scrolled {
- white-space: normal;
- }
-
- .sidebar {
- padding: 0 0 0 2px;
- }
-
- .thin > div {
- margin-top: 2px;
- }
-
- body h1,
- body h2,
- body h3,
- body h4 {
- padding: 5px 0;
- }
-
- .linkbox,
- .pagination.pagination--top.js-pagination,
- td,
- .pagination.pagination--bottom.js-pagination {
- padding: 5px;
- }
-
- #user .main_column table[cellpadding="0"] tr td {
- border: none;
- }
-
- li#nav_subscriptions a,
- li#nav_subscriptions a:hover {
- font-weight: normal;
- }
-
- .panel__body,
- .panel__heading,
- .box,
- .head {
- padding: 10px;
- }
-
- #forums table.forum_post tr td:nth-child(2n) a {
- font-weight: inherit;
- }
-
- .toggleable-search-form__toggler-container,
- #torrents tr.colhead_dark td,
- .forum-post__heading,
- #series tr.colhead_dark td,
- thead th {
- padding: 10px 10px 9px 10px;
- }
-
- .box .head {
- margin: -10px -10px 6px !important;
- }
-
- div#covers > div:first-of-type {
- margin-top: -6px;
- }
-
- .head {
- margin-bottom: 6px;
- }
-
- table.torrent_table .group_torrent td {
- font-size: 0.75rem;
- }
-
- span#rippy-says a[href*="torrents.php?id"] {
- color: inherit;
- }
-
- span#rippy-says a[href*="torrents.php?id"]:hover {
- color: inherit;
- text-decoration: underline;
- }
-
- .forum_list h3,
- .pagination.pagination--top,
- .pagination.pagination--bottom {
- padding: 5px;
- }
-
- a.last_read > svg {
- fill: #a7a7a7;
- margin: 2px 6px;
- }
-
- span.last_read {
- margin-left: 5px;
- }
-
- #torrent_details
- 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;"] {
- text-shadow: none !important;
- color: inherit !important;
- font-size: inherit !important;
- font-family: inherit !important;
- }
-
- .alertbar {
- text-align: center;
- padding: 10px;
- background: #d0d0d0;
- text-align: center;
- }
-
- .alertbar.warning {
- color: #cc7100;
- }
-
- .alertbar.error {
- color: #ff0000;
- }
-
- .sidebar .stats.nobullet a {
- padding: 3px 6px;
- }
-
- #content td.avatar {
- padding: 0;
- }
-
- .head[style="height: 13px;"] {
- height: 36px !important;
- }
-
- tr.colhead {
- font-weight: bold;
- }
-
- .forum_post .colhead_dark td,
- #torrents table.forum_post tr.colhead_dark td {
- padding: 7px;
- padding-top: 0;
- padding-bottom: 0;
- }
-
- .forum_post {
- margin-bottom: 20px;
- }
-
- blockquote {
- margin: 10px;
- padding: 10px;
- }
-
- .box.box_albumart {
- padding-bottom: 0;
- }
-
- .box.box_albumart p {
- margin-left: -10px;
- margin-right: -10px;
- }
-
- .box.box_albumart p img {
- max-width: 100% !important;
- min-width: 100%;
- }
-
- #content > .thin > h2 {
- margin-top: 2px;
- }
-
- #index .thin > div,
- #series > #content,
- #showslist #content,
- #nfo #content,
- #kb #content,
- #store #content {
- margin-top: 10px;
- }
-
- #user .sidebar div[align="center"] {
- min-width: 100%;
- padding: 0 !important;
- margin: -6px -10px -10px;
- }
-
- div#last5:last-child {
- border-right: none;
- }
-
- .of_the_month > .box:first-child {
- width: calc(50% - 2px);
- margin-right: 2px;
- }
-
- .of_the_month > .box {
- width: 50%;
- display: block;
- box-sizing: border-box;
- }
-
- .of_the_month > .box ul.stats.nobullet {
- margin-left: -10px;
- margin-right: -10px;
- }
-
- .of_the_month > .box ul.stats.nobullet li {
- padding-right: 10px;
- padding-left: 10px;
- }
-
- .of_the_month > .box ul.stats.nobullet li:first-child {
- padding: 0;
- }
-
- #user #slider .scroll,
- .forum-post__bodyguard iframe {
- width: 100%;
- }
-
- div#last5 {
- width: 20%;
- width: calc(20% - 2px) !important;
- margin: 0 2px 0 0 !important;
- padding: 0 !important;
- display: block !important;
- float: left !important;
- text-align: center;
- box-sizing: border-box;
- }
-
- div#last5:last-of-type {
- margin-right: 0 !important;
- width: 20% !important;
- }
-
- div#latest5 > div {
- margin-left: -10px;
- margin-right: -10px;
- margin-top: -6px;
- }
-
- table.forum_index,
- .forum_list h3 {
- margin-bottom: 2px;
- }
-
- input[type="submit"],
- input[type="button"] {
- padding: 5px 8px;
- }
-
- #taglist tr td a,
- .huge-movie-list__movie__tag-list a,
- .movie-tooltip__tag,
- a.basic-movie-list__movie__tag,
- .tags a,
- ul.stats.nobullet li a[href*="torrents.php?taglist="],
- a.cover-movie-list__movie__tag {
- padding: 3px 6px;
- margin: 1px;
- }
-
- #searchbars li input,
- #searchbars li input:hover,
- #searchbars li input:focus,
- .search-bar li input,
- .search-bar li input:hover,
- .search-bar li input:focus {
- padding: 5px 6px;
- margin: 0 3px;
- }
-
- input,
- textarea[name="body"] {
- padding: 3px 5px;
- }
-
- .qtip-content {
- padding: 10px;
- }
-
- .movie-tooltip__ratings div,
- .movie-tooltip__director-list div,
- .movie-tooltip__ratings {
- display: inline-block;
- }
-
- div#searchbars > ul,
- div.search-bar > ul {
- padding: 4px 0;
- }
-
- ul#userinfo_username > li,
- ul#userinfo_major > li,
- ul#userinfo_stats > li {
- padding: 0 5px;
- }
-
- body {
- font-family: "Proxima Nova", "Lato", "Segoe UI", sans-serif;
- font-size: 13px;
- -moz-osx-font-smoothing: grayscale !important;
- -webkit-font-smoothing: antialiased !important;
- text-rendering: optimizeLegibility !important;
- }
-
- #header {
- background-size: cover;
- background-repeat: no-repeat;
- background-position: center center;
- padding-top: 50px;
- text-align: center;
- }
-
- #content {
- margin: 0 auto;
- }
-
- @media (min-width: 544px) {
- #content {
- max-width: 576px;
- }
- }
-
- @media (min-width: 768px) {
- #content {
- max-width: 720px;
- }
- }
-
- @media (min-width: 992px) {
- #content {
- max-width: 940px;
- }
- }
-
- @media (min-width: 1200px) {
- #content {
- max-width: 1140px;
- }
- }
-
- div.thin > center img#banner,
- #series .sidebar img,
- div[style="height:140px; max-height:140px;max-width:758px;"] {
- position: relative;
- }
-
- .signature {
- padding-top: 10px;
- margin-top: 10px;
- }
-
- .center,
- #inbox form#messageform[name="reply"] div.box.pad,
- #inbox .thin form#messageform[name="message"] div.box.pad {
- text-align: center;
- }
-
- body#actorshowcase #content table {
- display: inline-block;
- width: 24.7%;
- text-align: center;
- margin: 0 0 7px;
- vertical-align: top;
- }
-
- body#actorshowcase #content table tbody {
- display: inline-block;
- text-align: initial;
- }
-
- body#actorshowcase #content table:first-of-type {
- display: none;
- }
-
- input,
- input[type="search"],
- form textarea,
- form input,
- input[type="search" i],
- input,
- textarea,
- keygen,
- select,
- button {
- border: none;
- }
-
- .sidebar {
- width: 25%;
- float: right;
- }
-
- .main_column,
- .main-column {
- width: 75%;
- float: left;
- }
-
- div,
- table,
- tr,
- td {
- border-collapse: collapse;
- box-sizing: border-box;
- }
-
- h1,
- h2,
- h3,
- h4 {
- margin: 0;
- }
-
- a,
- tr.unreadpm a {
- text-decoration: none;
- -webkit-transition: color 0.25s ease-out;
- transition: color 0.25s ease-out;
- }
-
- ul.navigation li {
- display: inline-block !important;
- }
-
- .collage tr td,
- .collage tr td:first-of-type,
- .collage tr td:first-child,
- .collage tr td:last-of-type,
- .collage tr td:last-child {
- display: inline-block;
- }
-
- .collage a[href*="torrents.php?id"] img {
- max-width: 128.015px;
- }
-
- #staffpm #compose form h3 label[for="message"] {
- margin: 10px 0 0;
- display: block;
- }
-
- #staffpm #compose form h3 label[for="message"],
- #inbox h3,
- #staffpm h3 label,
- #reply_box h3 {
- font-size: 14px;
- }
-
- #staffpm h3 label {
- display: block;
- }
-
- #staffpm form#messageform,
- #staffpm #inbox h3,
- h3,
- h2 {
- background: inherit;
- border: inherit;
- }
-
- #inbox #wrapper #content .thin div.box.pad table.message_table.checkboxes {
- text-align: left;
- }
-
- #inbox input[type="text"] {
- margin-bottom: 5px;
- }
-
- .forum_post,
- table.message_table.checkboxes {
- width: 100%;
- }
-
- .forum_post td.avatar {
- width: 16.6%;
- }
-
- .forum_post td.body {
- width: 83.4%;
- word-break: break-word;
- font-size: 14px;
- line-height: 1.4;
- }
-
- .forum-post__body {
- word-break: break-word;
- font-size: 14px;
- line-height: 1.4;
- }
-
- .forum-post__body {
- padding: 5px 10px;
- }
-
- #footer,
- header {
- clear: both;
- float: none;
- }
-
- #footer {
- text-align: center;
- }
-
- td {
- border-bottom: 1px solid #2b2b2b;
- }
-
- td.left {
- text-align: right;
- }
-
- .search-bar__search-field__input,
- .search-bar__results,
- .footer,
- .cover-movie-list__movie__tags,
- .cover-movie-list__movie__year,
- .cover-movie-list__movie__new,
- .huge-movie-list__movie__torrent-summary,
- .basic-movie-list__movie__bookmark,
- .basic-movie-list__movie__rating-container,
- .basic-movie-list__torrent-row,
- .panel__heading__toggler,
- #content > .thin table#torrent_table tr.group_torrent td,
- #content > .thin table#discog_table tr.group_torrent td {
- font-size: 0.723rem;
- }
-
- .torrent_row span,
- .group_torrent span {
- float: right;
- }
-
- .forum_post:last-of-type,
- .forum_post:last-child {
- margin-bottom: 0;
- }
-
- #menu,
- .main-menu {
- position: absolute;
- top: 0;
- z-index: 1500;
- width: 100%;
- height: 50px;
- transition: background 0.5s;
- transform: translateZ(0px);
- min-height: 50px;
- border: 1px solid transparent;
- text-align: center;
- }
-
- #menu:before,
- #menu:after,
- .main-menu:before,
- .main-menu:after,
- div#quickreplytext:after,
- #inbox form.send_form #quickpost:after {
- content: " ";
- display: table;
- }
-
- #menu ul > li > a,
- .main-menu ul > li > a {
- line-height: 20px;
- font-size: 14px;
- }
-
- #menu ul > li,
- .main-menu ul > li {
- padding: 15px 20px;
- }
-
- #userinfo_minor a {
- line-height: 30px;
- display: inline-block;
- }
-
- .box:before,
- .box:after {
- content: " ";
- display: table;
- }
-
- #header div#searchbars,
- #header div.search-bar {
- width: 100%;
- text-align: center;
- }
-
- div#userinfo {
- text-align: center;
- padding-bottom: 8px;
- }
-
- ul#userinfo_username,
- ul#userinfo_major,
- ul#userinfo_stats,
- ul#userinfo_minor {
- display: inline !important;
- vertical-align: middle;
- text-align: center;
- }
-
- td.label {
- max-width: 150px;
- width: 150px;
- text-align: right;
- vertical-align: middle;
- }
-
- td.ft_cataloguenumber,
- td.ft_remastertitle {
- width: 33.3%;
- max-width: 33.3%;
- }
-
- #taglist tr td {
- border: none;
- }
-
- #taglist {
- text-align: center;
- font-size: 0.7187rem;
- }
-
- table.layout {
- width: 100%;
- }
-
- #taglist tr,
- #taglist tr td {
- display: inline;
- padding: 0;
- }
-
- table.layout,
- table.layout.border,
- div#ft_container {
- font-size: 12px;
- margin: 0 auto;
- }
-
- table.layout.border {
- border-collapse: separate;
- }
-
- #upload form {
- text-align: left;
- }
-
- .sidebar > div,
- .sidebar ul,
- .sidebar table,
- div#quickreplytext {
- margin-bottom: 5px;
- }
-
- div#add_cover_div:after {
- content: " ";
- width: 100%;
- display: table;
- clear: both;
- }
-
- form.search_form input {
- border: 1px solid transparent;
- }
-
- form.search_form input {
- border: 1px solid transparent;
- }
-
- select {
- border: 1px solid transparent;
- }
-
- select {
- border: 1px solid transparent;
- }
-
- form.search_form input:hover,
- select:hover {
- box-sizing: border-box;
- -moz-box-sizing: border-box;
- -webkit-box-sizing: border-box;
- border: 1px solid #444;
- }
-
- form.search_form input:focus,
- select:focus {
- box-sizing: border-box;
- -moz-box-sizing: border-box;
- -webkit-box-sizing: border-box;
- }
-
- form.create_form {
- text-align: center;
- }
-
- form.create_form table {
- display: inline-block;
- }
-
- #inbox input[type="search"] {
- width: 50%;
- margin: 2px auto;
- display: block;
- color: inherit;
- }
-
- input[type="submit"],
- input[type="button"] {
- margin: 1px;
- cursor: pointer;
- }
-
- input[type="submit"]:hover,
- input[type="submit"]:focus,
- input[type="button"]:hover,
- input[type="button"]:focus {
- -webkit-transition: color 0.25s ease-out;
- transition: color 0.25s ease-out;
- }
-
- .nobullet {
- list-style-type: none;
- }
-
- .box ul.stats.nobullet li {
- font-size: 0.8125rem;
- }
-
- #covers img,
- #artist .sidebar img {
- z-index: 1;
- }
-
- #taglist tr td a,
- .huge-movie-list__movie__tag-list a,
- a.cover-movie-list__movie__tag,
- .movie-tooltip__tag,
- a.basic-movie-list__movie__tag,
- .tags a,
- .sidebar .stats.nobullet a {
- -webkit-border-radius: 10px;
- -moz-border-radius: 10px;
- border-radius: 10px;
- -webkit-transition: background 0.25s ease-out, color 0.25s ease-out;
- transition: background 0.25s ease-out, color 0.25s ease-out;
- font-size: 0.7187rem;
- display: inline-block;
- margin: 1px 0;
- }
-
- .main_column .box .head.colhead_dark,
- .box.news_post .head,
- .main-column .box .head.colhead_dark,
- .box.news_post .head {
- border-bottom: 1px solid #2b2b2b;
- }
-
- .sidebar .stats.nobullet a.brackets {
- background: inherit !important;
- color: inherit;
- padding: 0 2px;
- }
-
- .box_info .stats.nobullet li a {
- background: inherit;
- font-size: inherit;
- font-weight: 400;
- }
-
- .box_info .stats.nobullet li a:hover {
- background: inherit;
- font-size: inherit;
- font-weight: 400;
- }
-
- .toggleable-search-form__toggler-container,
- .panel__heading,
- .sidebar .box .head,
- .main_column .box .head.colhead_dark,
- .sidebar .box .head,
- .main-column .box .head.colhead_dark,
- .box.news_post .head,
- tr.colhead,
- tr.colhead_dark,
- .head.colhead_dark,
- .main_column .box .head,
- .main-column .box .head,
- .forum-post__heading {
- font-size: 14px;
- }
-
- span.last_read a:before {
- content: "\f061";
- font-family: FontAwesome;
- line-height: 31px;
- }
-
- .forum_index span.last_read a:before,
- table.forum_list span.last_read a:before {
- line-height: inherit;
- }
-
- #artist .sidebar img {
- width: 100%;
- height: auto;
- min-width: 100%;
- }
-
- table#collages,
- table.collage_table,
- table.vote_matches_table {
- width: 100%;
- }
-
- td.unread:before {
- content: "\f075";
- font-family: FontAwesome;
- }
-
- td.read:before {
- content: "\f075";
- font-family: FontAwesome;
- }
-
- td.read_sticky:before {
- content: "\f086";
- font-family: FontAwesome;
- }
-
- td.unread_sticky:before {
- content: "\f086";
- font-family: FontAwesome;
- }
-
- td.read_locked:before {
- content: "\f075";
- font-family: FontAwesome;
- content: \f023;
- font-family: FontAwesome;
- }
-
- div.body table tbody tr td[style="width: 20%"] {
- padding: 0;
- vertical-align: top;
- }
-
- td.unread_locked:before {
- content: "\f023";
- font-family: FontAwesome;
- }
-
- td.read_locked_sticky:before {
- content: "\f06a";
- font-family: FontAwesome;
- }
-
- td.unread_locked_sticky:before {
- content: "\f06a";
- font-family: FontAwesome;
- }
-
- .forum_list h4,
- .forum_list h3,
- .forum_list h2,
- .forum_list h1 {
- font-size: inherit;
- font-weight: bold;
- }
-
- .submit.ft_submit span {
- font-size: 0.7187rem;
- margin: 0 10px 0 0;
- display: block;
- }
-
- form.search_form input[type="submit"]:hover,
- form.search_form input[type="button"]:hover {
- cursor: pointer;
- }
-
- form.search_form input[type="submit"],
- form.search_form input[type="button"] {
- cursor: pointer;
- }
-
- #index .sidebar .stats.nobullet a {
- background: inherit;
- font-weight: inherit;
- font-size: inherit;
- }
-
- #index .sidebar .stats.nobullet a:hover,
- #index .sidebar .stats.nobullet a:focus {
- color: inherit;
- }
-
- .hidden,
- div#quickreplytext br {
- display: none;
- }
-
- #request_table .rowa td > a {
- font-weight: 600;
- }
-
- .big_info .group_info.clear span {
- float: right;
- }
-
- #forums .forum_list tr td:nth-child(2n) a,
- table.collage_table tr td:nth-of-type(2) a {
- font-weight: 600;
- }
-
- .sidebar .navigation_list li {
- display: block;
- }
-
- .sidebar form.search_form {
- background: inherit;
- }
-
- #inbox .box {
- margin-bottom: 20px;
- }
-
- #inbox .box:last-of-type {
- margin-bottom: 0;
- }
-
- #userinfo .brackets:before,
- #userinfo .brackets:after {
- display: none;
- }
-
- #header {
- -webkit-font-smoothing: antialiased !important;
- }
-
- .sidebar select,
- #inbox form.send_form #quickpost {
- margin-bottom: 5px;
- }
-
- .lightbox {
- position: fixed;
- text-align: center;
- top: 5%;
- left: 5%;
- width: 90%;
- height: 90%;
- z-index: 1002;
- overflow: auto;
- z-index: 2001;
- }
-
- .lightbox img {
- max-width: 100%;
- max-height: 100%;
- z-index: -1;
- }
-
- .curtain {
- position: fixed;
- top: 0;
- left: 0;
- width: 100%;
- height: 100%;
- -moz-opacity: 0.9;
- opacity: 0.9;
- filter: alpha(opacity=90);
- }
-
- li.graph,
- #poll_options li {
- display: block;
- padding-bottom: 5px;
- }
-
- input[type="text"],
- input[type="email"] {
- margin: 1px;
- }
-
- .noty_message,
- ul#noty_bottomRight_layout_container li,
- .noty_buttons {
- border: none !important;
- -webkit-border-radius: 1px !important;
- -moz-border-radius: 1px !important;
- border-radius: 1px !important;
- }
-
- select {
- border-radius: 1px;
- -webkit-border-radius: 1px;
- -moz-border-radius: 1px;
- }
-
- #searchbars li input,
- .search-bar li input {
- border-radius: inherit;
- }
-
- li#searchbar_torrents:first-of-type form:before,
- div#searchbars ul li:first-of-type form:before,
- div.search-bar ul li:first-of-type form:before {
- content: "\f002";
- display: inline;
- font-family: FontAwesome;
- float: left;
- width: 16px;
- height: 25px;
- vertical-align: middle;
- line-height: 23px;
- background: transparent;
- background-color: transparent;
- margin-right: 7px;
- font-size: 16px;
- }
-
- div#searchbars,
- div#searchbars ul,
- div#searchbars ul li,
- div#searchbars form,
- div.search-bar,
- div.search-bar ul,
- div.search-bar ul li,
- div.search-bar form {
- background: transparent;
- background-color: transparent;
- }
-
- li#searchbar_torrents {
- margin-left: -23px;
- }
-
- form.search_form tr td strong {
- font-weight: 400;
- }
-
- input {
- border: none;
- }
-
- #header form.search_form {
- width: inherit !important;
- margin: 0 auto;
- }
-
- .box h3,
- .header h1,
- .header h2,
- .header h3,
- #forums h2 {
- font-weight: 600;
- }
-
- .box h3,
- .header h1,
- .header h2,
- .header h3,
- #forums h2 {
- font-size: 1.125rem;
- }
-
- table#forum_search_cat_list tr td {
- display: inline-block;
- }
-
- table.layout.cat_list.ft_cat_list,
- table.layout.cat_list {
- text-align: center;
- }
-
- table#forum_search_cat_list {
- text-align: initial;
- }
-
- #header b,
- #header strong,
- #torrent_table b,
- #torrent_table strong,
- .group_torrent b,
- .group_torrent strong {
- font-weight: 400;
- }
-
- .box.news_post,
- .box#recommended {
- font-size: 14px;
- }
-
- textarea[name="comment"],
- input[name="subject"],
- textarea[name="body"],
- input[type="text"] {
- border: 1px solid transparent !important;
- }
-
- textarea[name="comment"]:hover,
- input[name="subject"]:hover,
- textarea[name="body"]:hover,
- input[type="text"]:hover {
- border: 1px solid #444 !important;
- }
-
- textarea[name="body"]:focus,
- textarea[name="comment"]:focus,
- input[name="subject"]:focus,
- input[type="text"]:focus {
- border: 1px solid #444 !important;
- }
-
- .autocomplete-suggestions {
- border: none;
- font-size: 0.6875rem;
- }
-
- .autocomplete-selected {
- border: none;
- font-size: 0.6875rem;
- }
-
- div.noty_bar {
- border: 1px solid #444;
- }
-
- div#last5 a strong {
- margin-top: 5px;
- display: block;
- }
-
- table {
- width: 100%;
- }
-
- div#latest5normal:after,
- div#latest5internals:after,
- div#latest5userreleases:after {
- content: "";
- display: block;
- clear: both;
- }
-
- tr.cat_list {
- text-align: center;
- }
-
- div#alerts {
- width: 100%;
- }
-
- .forum-post__heading,
- .forum_post tr.colhead_dark,
- .forum_post .colhead_dark td {
- max-height: 32px;
- padding-top: 0;
- padding-bottom: 0;
- height: 32px;
- line-height: 32px;
- }
-
- .forum_post .colhead_dark td,
- .forum_post tr.colhead_dark,
- #latest5 .head.colhead_dark,
- a[onclick*="toggle"] {
- font-weight: inherit;
- }
-
- a[onclick*="toggle"] {
- font-weight: initial !important;
- }
-
- #wiki .main_column .box li,
- #wiki .main-column .box li {
- display: block;
- }
-
- #last5 img {
- width: 100%;
- height: auto;
- }
-
- td.nobr {
- white-space: nowrap;
- }
-
- ul.stats.nobullet li {
- display: block;
- }
-
- p {
- margin: 0;
- }
-
- .poll .graph .left_poll {
- width: 9px;
- background: url(../../img/poll_left.png) top left no-repeat;
- }
-
- .poll .graph span {
- display: block;
- height: 19px;
- float: left;
- }
-
- .poll .graph .center_poll {
- background: url(../../img/poll_middle.png) top left repeat-x;
- }
-
- .poll .graph .right_poll {
- width: 11px;
- background: url(../../img/poll_right.png) top left no-repeat;
- }
-
- ul.poll.nobullet li {
- display: block;
- clear: both;
- }
-
- div.pad#threadpoll {
- margin-bottom: 5px;
- }
-
- div.pad#threadpoll p strong {
- clear: both;
- display: block;
- }
-
- table.torrent_table td {
- max-width: 640px;
- }
-
- .signature {
- margin-top: 10px;
- }
-
- a[rel="noreferrer"] img[style="max-width: 500px;"] {
- max-width: 32.86%;
- margin: 0;
- }
-
- .torrent_table blockquote {
- margin: inherit;
- }
-
- blockquote div[style="margin:20px; margin-top:5px"] {
- margin: 5px 0 0 !important;
- }
-
- table#collage_table {
- max-width: 100%;
- text-align: center;
- width: 100%;
- }
-
- table#collage_table img {
- min-width: 100%;
- }
-
- #user .main_column table[cellpadding="0"] tr td,
- div.body table tbody tr td[style="width: 20%"],
- #user .main-column table[cellpadding="0"] tr td,
- div.body table tbody tr td[style="width: 20%"] {
- width: 20%;
- }
-
- #user .main_column table[cellpadding="0"] tr td a,
- #user .main_column table[cellpadding="0"] tr td a img,
- #user .main-column table[cellpadding="0"] tr td a,
- #user .main-column table[cellpadding="0"] tr td a img {
- width: 100%;
- }
-
- #torrents .forum_post img {
- max-width: 100%;
- }
-
- div#last5:last-of-type {
- margin-right: 0;
- }
-
- a img {
- -webkit-transition: all 0.25s linear;
- transition: all 0.25s linear;
- -webkit-transform: translateZ(0);
- transform: translateZ(0);
- }
-
- a:hover img {
- filter: alpha(opacity=70);
- -moz-opacity: 0.7;
- -khtml-opacity: 0.7;
- opacity: 0.7;
- }
-
- #user .main_column table[cellpadding="0"] tr td,
- #user .main-column table[cellpadding="0"] tr td {
- float: left;
- display: block;
- /* vertical-align: top; */
- }
-
- #user .main_column table[cellpadding="0"] tr td[colspan="5"],
- #user .main-column table[cellpadding="0"] tr td[colspan="5"] {
- width: 100%;
- }
-
- .torrent_table blockquote,
- .torrent_table blockquote span,
- .log3,
- .log5,
- tr.pad[id*="torrent_"],
- .torrent_info_row {
- font-family: "Inconsolata", monospace;
- }
-
- tr.pad[id*="torrent_"] .linkbox,
- tr.pad[id*="torrent_"] h2,
- tr.pad[id*="torrent_"] h3,
- tr.pad[id*="torrent_"] h1,
- tr.pad[id*="torrent_"] h4 {
- font-family: "Proxima Nova", "Lato", "Segoe UI", sans-serif;
- font-size: 14px;
- }
-
- tr.pad[id*="torrent_"] .colhead_dark,
- .forum-post__heading,
- tr.pad[id*="torrent_"] .colhead {
- font-family: "Proxima Nova", "Lato", "Segoe UI", sans-serif;
- font-size: 14px;
- }
-
- tr.pad[id*="torrent_"] ul,
- tr.pad[id*="torrent_"] h3 {
- text-align: center;
- }
-
- #forums a[rel="noreferrer"] img[style="max-width: 500px;"] {
- width: inherit;
- }
-
- .toggleable-search-form__toggler-container,
- #blog .pad,
- #index .main_column .box,
- #blog .pad,
- #index .main-column .box,
- .box.filter_torrents .head,
- .colhead td,
- .colhead_dark td,
- tr.colhead,
- tr.colhead_dark,
- #inbox .box .head,
- #inbox .box .head,
- #reply_box h3,
- #inbox form .send_form #quickpost h3,
- #blog .head,
- #wiki .main_column .box,
- #wiki .main-column .box,
- thead th,
- .forum-post__heading,
- #wiki .main-column {
- font-size: 0.875rem;
- }
-
- #torrents a[rel="noreferrer"] img[style="max-width: 500px;"] {
- max-width: 32.673%;
- }
-
- .submit span[style="float:left;"] {
- display: inline;
- float: none !important;
- font-size: 12px;
- }
-
- .filter_torrents div.submit input {
- display: inline;
- margin: 5px 0;
- }
-
- table.cat_list,
- tr#edition_expand {
- text-align: center;
- }
-
- #staff .box.pad {
- background: transparent !important;
- }
-
- #forums table.cat_list {
- text-align: inherit;
- }
-
- #header li {
- display: inline-block;
- }
-
- #header #nav_more ul li,
- #header .search-bar__results__list-item {
- display: inherit;
- }
-
- table#torrent_details li,
- .forum_post li,
- .news_post .pad li {
- display: list-item;
- }
-
- .show_torrents_link {
- border: none;
- width: 28px;
- height: 28px;
- display: block;
- }
-
- a[onclick]:focus {
- outline: 0;
- background: transparent;
- }
-
- #content .sidebar ul.nobullet h2 {
- text-align: inherit !important;
- }
-
- #content .thin .sidebar .box.box_image div[style="text-align: center; padding: 10px 0px;"] {
- margin: -6px -10px -10px -10px !important;
- padding: 0 !important;
- }
-
- #top10 #content .thin p {
- width: 100%;
- text-align: center;
- display: block;
- }
-
- #top10 #content .thin p strong,
- #top10 #content .thin p small {
- display: inline-block;
- font-size: 0.875rem;
- }
-
- #coverart ul.collage_images li {
- width: 20%;
- height: auto;
- display: inline-block;
- vertical-align: top;
- float: none;
- }
-
- #coverart ul.collage_images li img,
- #coverart ul.collage_images li a {
- min-width: 100%;
- width: 100%;
- height: auto;
- }
-
- #coverart ul.collage_images {
- width: 100%;
- }
-
- #content li {
- list-style-type: inherit;
- list-style-position: inside;
- }
-
- #forums #content li {
- padding-left: 10px;
- }
-
- #rules #content li {
- display: list-item;
- }
-
- #content .thin div[style="height:140px;"] {
- height: auto !important;
- }
-
- .filter_torrents .box.pad.center {
- background-color: transparent;
- background: transparent;
- }
-
- .linkbox,
- .pagination.pagination--top.js-pagination,
- .thin > h2,
- .header > h2,
- .thin > h3,
- .header > .linkbox,
- .filter_torrents > h3,
- .pagination.pagination--bottom.js-pagination {
- text-align: center !important;
- }
-
- h2,
- h3 {
- text-align: center;
- }
-
- .forum_post td a img:after {
- content: " ";
- width: 100%;
- display: block;
- clear: both;
- }
-
- .forum_post td a img {
- display: inline-block;
- vertical-align: middle;
- }
-
- .torrent_info_row .linkbox {
- font-family: "Proxima Nova", "Lato", "Segoe UI", sans-serif;
- font-size: 0.75rem;
- }
-
- .torrent_info_row .bbcode-table-guard a {
- width: 100%;
- text-align: center;
- }
-
- .torrent_info_row > td {
- padding: 15px;
- box-sizing: border-box;
- }
-
- .torrent_info_row .bbcode-table-guard a {
- padding: 5px 0;
- display: inline-block;
- margin: 0 auto;
- }
-
- .forum_post td.body {
- padding-right: 10px;
- padding-bottom: 10px;
- }
-
- .linkbox a.brackets {
- padding-bottom: 5px;
- }
-
- .linkbox a.brackets {
- display: inline-block;
- }
-
- a.new-subscriptions {
- font-weight: normal;
- }
-
- .forum-post__heading img {
- max-height: 13px;
- }
-
- span.user_title {
- max-height: 32px;
- }
-
- body {
- background: #e1e3e4;
- color: #313131;
- }
-
- .torrent td,
- pre,
- blockquote {
- color: #777 !important;
- }
-
- .signature {
- border-top: 1px dashed rgba(121, 121, 121, 0.5);
- }
-
- #forums td {
- color: #777;
- }
-
- #header {
- color: #9a9a9a;
- }
-
- #header a {
- color: #f7f7f7;
- }
-
- tr.inbox-message--unread td a:hover,
- tr.unreadpm a:hover {
- color: #f7f7f7;
- }
-
- body #wrapper div#header {
- background-color: #1a1a1a;
- }
-
- .sidebar .box,
- .news_post .pad,
- .main_column .box,
- .main_column2 .box,
- #scontent .box {
- background: #d9dbdb;
- }
-
- #header a:hover,
- #header a:focus {
- color: #3c948b;
- }
-
- #forums .forum_post td,
- #forums tr.colhead {
- color: #313131;
- }
-
- #forums tr.colhead td,
- #forums .colhead_dark,
- #forums .colhead_dark td {
- color: #f7f7f7;
- }
-
- td a {
- color: #313131;
- }
-
- .head a {
- color: #313131;
- }
-
- #summary .ui-widget-header {
- border: none;
- }
-
- #torrents .torrent_table a[onclick*="toggle"] strong {
- color: #000;
- }
-
- #torrents .torrent_table a[onclick*="toggle"],
- tr.recentinternalrow > td:first-child,
- a[href*="torrents.php?id"],
- a[href*="torrents.php?id"][title="View Torrent"].season:hover,
- a[href*="torrents.php?id"][title="View Torrent"].episode {
- color: #777;
- }
-
- .ui-tabs .ui-tabs-nav li.ui-state-default,
- div.ui-tabs-vertical .ui-tabs-nav li.ui-state-default {
- background: #bbb !important;
- }
-
- td,
- form.search_form,
- .box.pad,
- #blog .box,
- div.ui-tabs-vertical,
- .box.thin.clear {
- background: #d9dbdb;
- }
-
- .box.filter_torrents .head,
- .colhead td,
- .colhead_dark td,
- tr.colhead,
- tr.colhead_dark,
- #inbox .box .head,
- #inbox .box .head,
- #reply_box h3,
- #inbox form .send_form #quickpost h3,
- #blog .head {
- color: #9a9a9a;
- border-bottom: 2px solid #1a1a1a;
- }
-
- div#quickreplytext {
- padding: 15px;
- background: #d0d0d0;
- }
-
- #staffpm form#messageform,
- #staffpm #inbox h3,
- h3,
- h2 {
- color: inherit;
- border: inherit;
- }
-
- .group td {
- background: #d0d0d0;
- }
-
- td {
- padding: 5px;
- border-bottom: 1px solid #d0d0d0;
- }
-
- .holder {
- background: #1a1a1a;
- }
-
- #menu {
- background: #1d1d1d;
- background: rgba(0, 0, 0, 0.6);
- border: 1px solid transparent;
- }
-
- #menu > ul {
- display: flex;
- width: 850px;
- margin: 0 auto;
- }
-
- #menu > ul > li {
- position: relative;
- flex: 1 1 auto;
- }
-
- .nav_dropdown > div {
- position: absolute;
- background-color: rgba(0, 0, 0, 0.6);
- width: 100%;
- z-index: 99999;
- margin-top: 14px;
- left: 0;
- }
-
- #nav_links > #links_menu {
- width: 120px;
- margin-left: -68px;
- }
-
- .nav_dropdown > div > a {
- display: none;
- height: 32px;
- line-height: 32px;
- }
-
- .nav_dropdown:hover > div > a {
- display: block;
- }
-
- #userinfo_minor a,
- #menu ul > li > a {
- color: #fff;
- }
-
- #header div#searchbars {
- background: #131313;
- padding: 4.5px 0;
- display: flex;
- width: 850px;
- margin: 0 auto;
- }
-
- div#ft_container {
- background: #d0d0d0;
- }
-
- #taglist {
- text-align: center;
- font-size: 0.7187rem;
- background: #d9dbdb;
- }
-
- table.layout {
- width: 100%;
- }
-
- blockquote {
- border: 1px dashed rgba(121, 121, 121, 0.5);
- }
-
- span[style="color: grey;"] {
- color: #333 !important;
- }
-
- .box.torrent_description {
- background: #d9dbdb;
- }
-
- form.search_form input {
- border: 1px solid transparent;
- }
-
- form.search_form input {
- background: #b5b5b5;
- color: #313131;
- border: 1px solid transparent;
- }
-
- select {
- border: 1px solid transparent;
- }
-
- select {
- background: #b5b5b5;
- color: #313131;
- border: 1px solid transparent;
- }
-
- #header form.search_form input:hover,
- #header select:hover {
- background: #1f1f1f;
- color: #f7f7f7;
- border: 1px solid #444;
- }
-
- #header form.search_form input:focus,
- #header select:focus,
- #header input:hover,
- #header input:focus {
- background: #1f1f1f;
- color: #f7f7f7;
- border: 1px solid #444 !important;
- }
-
- form.search_form input:hover,
- select:hover {
- background: #a9a9a9;
- color: #f4f4f4;
- border: 1px solid #a2a2a2;
- }
-
- form.search_form input:focus,
- select:focus {
- background: #a9a9a9;
- color: #333;
- border: 1px solid #a2a2a2;
- }
-
- #header input {
- border: 1px solid transparent;
- }
-
- #header input {
- background: #333;
- color: #5a5a5a;
- border: 1px solid transparent;
- }
-
- #inbox input[type="search"] {
- color: inherit;
- }
-
- input[type="submit"],
- input[type="button"] {
- color: #f7f7f7;
- }
-
- input[type="submit"]:hover,
- input[type="submit"]:focus,
- input[type="button"]:hover,
- input[type="button"]:focus {
- color: #f7f7f7;
- background-color: #777;
- }
-
- #taglist tr td a,
- .tags a,
- .sidebar .stats.nobullet a {
- background: #9c9c9c;
- color: #f4f4f4;
- }
-
- #taglist tr td a:hover,
- #taglist tr td a:focus,
- .tags a:hover,
- .tags a:focus,
- .sidebar .stats.nobullet a:hover,
- .sidebar .stats.nobullet a:focus {
- background: #333;
- color: #f4f4f4;
- }
-
- .main_column .box .head.colhead_dark,
- .box.news_post .head {
- border-bottom: 1px solid #2b2b2b;
- }
-
- .sidebar .stats.nobullet a.brackets {
- background: inherit !important;
- color: inherit;
- }
-
- .box_info .stats.nobullet li a {
- background: inherit;
- font-size: inherit;
- color: #3c948b !important;
- }
-
- .box_info .stats.nobullet li a:hover {
- background: inherit;
- font-size: inherit;
- color: #313131;
- }
-
- .sidebar .box .head,
- .main_column .box .head.colhead_dark,
- .box.news_post .head,
- tr.colhead,
- tr.colhead_dark,
- .head.colhead_dark,
- .main_column .box .head {
- border-bottom: 1px solid #2b2b2b;
- }
-
- td.read:before {
- color: #ababab;
- }
-
- td.read_sticky:before {
- color: #ababab;
- }
-
- td.read_locked:before {
- color: #ababab;
- }
-
- td.unread_locked:before {
- color: #3c948b;
- }
-
- td.read_locked_sticky:before {
- color: #ababab;
- }
-
- td.unread_locked_sticky:before {
- color: #3c948b;
- }
-
- .submit.ft_submit span {
- color: #555;
- }
-
- form.search_form input[type="submit"]:hover,
- form.search_form input[type="button"]:hover {
- background: #777;
- color: #f4f4f4;
- border: 1px solid #777;
- }
-
- form.search_form input[type="submit"],
- form.search_form input[type="button"] {
- color: #f4f4f4;
- }
-
- .group_info > a:nth-child(2n):hover,
- .group_info > a:nth-child(3n):hover {
- color: #313131;
- }
-
- #index .sidebar .stats.nobullet a {
- background: inherit;
- }
-
- #index .sidebar .stats.nobullet a:hover,
- #index .sidebar .stats.nobullet a:focus {
- color: inherit;
- }
-
- .forum_post a:hover,
- .forum_post a:focus,
- #summary .ui-widget-content {
- color: #313131;
- }
-
- li#nav_subscriptions.new-subscriptions a:hover {
- color: #f7f7f7 !important;
- }
-
- .box.filter_torrents .head a,
- .forum_post .colhead a,
- .forum_post .colhead_dark a,
- #inbox .box .head a {
- color: #313131;
- }
-
- .hide_torrents {
- width: 28px;
- height: 28px;
- background: url(../../img/d-hide.png) no-repeat center center;
- -moz-opacity: 0.5;
- opacity: 0.5;
- filter: alpha(opacity=50);
- background-size: 10px 10px;
- }
-
- .show_torrents {
- width: 28px;
- height: 28px;
- background: url(../../img/d-show.png) no-repeat center center;
- -moz-opacity: 0.5;
- opacity: 0.5;
- filter: alpha(opacity=50);
- background-size: 10px 10px;
- }
-
- #inbox .box .body,
- #inbox .box #buttons .field_div.textarea_wrap,
- #inbox .box {
- background: #d0d0d0;
- }
-
- .lightbox img {
- background-color: transparent;
- }
-
- .curtain {
- background: #111 50% 0 no-repeat fixed;
- }
-
- textarea,
- input {
- background-color: #b5b5b5;
- }
-
- .noty_message,
- ul#noty_bottomRight_layout_container li,
- .noty_buttons {
- background-color: #d9dbdb;
- background: #d9dbdb !important;
- color: #313131 !important;
- border: none !important;
- }
-
- li#searchbar_torrents:first-of-type form:before,
- div#searchbars ul li:first-of-type form:before {
- background: transparent;
- background-color: transparent;
- color: #717171;
- }
-
- div#searchbars,
- div#searchbars ul,
- div#searchbars ul li,
- div#searchbars form {
- background: transparent;
- background-color: transparent;
- }
-
- textarea[name="comment"],
- input[name="subject"],
- textarea[name="body"],
- input[type="text"] {
- background: #b5b5b5;
- color: #5a5a5a;
- border: 1px solid transparent !important;
- }
-
- textarea[name="comment"]:hover,
- input[name="subject"]:hover,
- textarea[name="body"]:hover,
- input[type="text"]:hover {
- background: #a9a9a9;
- color: #f7f7f7;
- border: 1px solid #9e9e9e !important;
- }
-
- textarea[name="body"]:focus,
- textarea[name="comment"]:focus,
- input[name="subject"]:focus,
- input[type="text"]:focus {
- background: #a9a9a9;
- color: #333;
- border: 1px solid #9e9e9e !important;
- }
-
- .autocomplete-suggestions strong {
- color: #f7f7f7;
- }
-
- .autocomplete-suggestions {
- background: #131313;
- color: #9a9a9a;
- }
-
- .autocomplete-selected {
- background: #222 !important;
- color: #9a9a9a;
- background-color: #1f1f1f !important;
- }
-
- div.noty_bar {
- border: 1px solid #d0d0d0;
- }
-
- .filter_torrents .box.pad {
- background: #d0d0d0;
- }
-
- .forum_post tr.colhead_dark.notify_forums a,
- .forum_post tr.colhead a {
- color: #f7f7f7;
- }
-
- .staff_post tr.colhead_dark > td,
- .staff_post tr.colhead_dark {
- background: #d476d1;
- }
-
- .forum_post tr.colhead_dark > td,
- .forum_post tr.colhead_dark {
- border-bottom: none !important;
- }
-
- .forum_post.forum_unread tr.colhead_dark {
- border-top: 2px solid #76efe4;
- }
-
- .forum_post.staff_post.forum_unread tr.colhead_dark {
- border-top: 2px solid #b159a6;
- }
-
- table#torrent_table strong {
- color: #313131;
- }
-
- .box.filter_torrents .head,
- .colhead td,
- .colhead_dark td,
- tr.colhead,
- tr.colhead_dark,
- #inbox .box .head,
- #inbox .box .head,
- #reply_box h3,
- #inbox form .send_form #quickpost h3,
- .sidebar .box .head,
- .main_column .box .head.colhead_dark,
- .box.news_post .head,
- tr.colhead,
- tr.colhead_dark,
- .head.colhead_dark,
- .main_column .box .head {
- color: #f7f7f7;
- }
-
- div.pad#threadpoll {
- background: #d0d0d0;
- }
-
- div.pad#threadpoll p strong {
- color: #313131;
- }
-
- .thin h2,
- .thin h3,
- #content h2 {
- color: #313131;
- }
-
- #content .thin div[style="height:140px;"] {
- background-color: #d0d0d0;
- }
-
- #index div#last5t > .head.colhead_dark:first-child {
- margin-bottom: 10px !important;
- }
-
- .autocomplete-suggestion {
- padding: 5px;
- }
-
- .tag_parody {
- background: #d2aa4b !important;
- }
-
- .tag_character {
- background: #689f78 !important;
- }
-
- .tag_female {
- background: #e993e9 !important;
- }
-
- .tag_male {
- background: #5959f9 !important;
- }
-
- .collage_image:hover {
- box-shadow: 0px 0px 0px 3px #5aada5;
- position: relative;
- }
-
- .bbcode_bar .emoji_box {
- background-color: #e1e3e4;
- border: 1px solid #d0d0d0;
- }
-
- /* Fixed Header addition */
-
- body.style_fixed_header #menu,
- body.style_fixed_header .main-menu {
- position: fixed;
- }
-
- body.style_fixed_header #settings_sections.fixed {
- top: 52px;
- }
|