123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574 |
- * {
- margin: 0;
- padding: 0;
- }
-
- body {
- width: 100%;
- font-family: "Open Sans", Helvetica, Arial, Tahoma, sans-serif;
- font-size: 12px;
- color: #c6c9c9;
- background-color: #23252a;
- }
-
- .linkbox .brackets:after,
- .linkbox .brackets:before {
- display: none;
- }
-
- a {
- text-decoration: none;
- border: none;
- color: #f0f0f0;
- }
-
- a:hover,
- .torrent_table .group a:hover {
- color: #92d4a0;
- }
-
- b,
- strong {
- font-weight: 600;
- }
-
- ::selection,
- ::-moz-selection {
- background: #3eaca7;
- }
-
- h1,
- h2,
- h3,
- h4,
- h5,
- h6 {
- font-weight: 400;
- color: #f0f0f0;
- margin: 8px 0;
- }
-
- h1,
- h2 {
- font-size: 23px;
- }
-
- #torrents .header h2 {
- text-align: center;
- }
-
- h3,
- h4 {
- font-size: 18px;
- }
-
- h1 a,
- h2 a,
- h3 a,
- h4 a,
- h5 a,
- h6 a {
- color: #83e4a6;
- }
-
- #userform #settings_sections h2 {
- font-size: 12px;
- line-height: 1.6;
- }
-
- #userform #settings_sections h2 a,
- .rule_short {
- color: #f0f0f0;
- }
-
- li {
- margin: 5px 15px;
- }
-
- p {
- margin: 10px 5px;
- }
-
- input {
- border: 1px solid #5b5e64;
- background-color: #373a42;
- padding: 10px 9px;
- color: #fff;
- }
-
- /* Buttons */
- button:not(.editor-toolbar button),
- input[type="button"],
- input[type="submit"] {
- background: change-color(whitesmoke, $alpha: 0.75);
- color: black;
- border: 1px solid #bbb;
-
- &.button-primary {
- background: #50aca7;
- border: 1px solid #bbb;
- color: black;
- }
-
- &:hover {
- background: #317f8e;
- /* Primary hover default blue */
- border: 1px solid #bbb !important;
- color: black !important;
- }
-
- &:focus {
- background: #2f707c;
- }
- }
-
- /*
- button,
- input[type="button"],
- input[type="submit"] {
- font-family: "Open Sans", Helvetica, Arial, Tahoma, sans-serif;
- background-color: #50aca7;
- color: #fff;
- }
-
- button:hover,
- input[type="button"]:hover,
- input[type="submit"]:hover {
- background-color: #317f8e;
- }
-
- button:focus,
- input[type="button"]:focus,
- input[type="submit"]:focus {
- background-color: #2f707c;
- }
- */
-
- .spoilerButton {
- max-width: 604px;
- }
-
- ::-webkit-input-placeholder {
- font-family: "Open Sans", Helvetica, Arial, Tahoma, sans-serif;
- }
-
- :-moz-placeholder {
- font-family: "Open Sans", Helvetica, Arial, Tahoma, sans-serif;
- }
-
- ::-moz-placeholder {
- font-family: "Open Sans", Helvetica, Arial, Tahoma, sans-serif;
- }
-
- :-ms-input-placeholder {
- font-family: "Open Sans", Helvetica, Arial, Tahoma, sans-serif;
- }
-
- select {
- background-color: #373a42;
- border: 1px solid #5b5e64;
- color: #fff;
- font-family: "Open Sans", Helvetica, Arial, Tahoma, sans-serif;
- outline: 0;
- }
-
- textarea {
- background-color: #373a42;
- border: 1px solid #5b5e64;
- color: #fff;
- font-family: "Open Sans", Helvetica, Arial, Tahoma, sans-serif;
- font-size: 1.1em;
- padding: 2px 3px;
- margin: 4px 0px;
- }
-
- span.size1 {
- font-size: 0.75em;
- }
-
- span.size2 {
- font-size: 1em;
- }
-
- span.size3 {
- font-size: 1.25em;
- }
-
- span.size4 {
- font-size: 1.5em;
- }
-
- span.size5 {
- font-size: 1.75em;
- }
-
- span.size6 {
- font-size: 2em;
- }
-
- span.size7 {
- font-size: 2.25em;
- }
-
- span.size8 {
- font-size: 2.5em;
- }
-
- span.size9 {
- font-size: 2.75em;
- }
-
- span.size10 {
- font-size: 3em;
- }
-
- ul.thin {
- margin: 0 0 0 25px;
- padding: 0;
- }
-
- ul.thin li {
- margin: 0;
- padding: 0;
- }
-
- #wrapper {
- padding: 0;
- }
-
- #header {
- width: 900px;
- position: relative;
- }
-
- #content {
- width: 900px;
- overflow: hidden;
- }
-
- #footer {
- margin-top: 2px;
- padding: 10px;
- text-align: center;
- }
-
- .center {
- text-align: center;
- }
-
- .vertical_space {
- margin-bottom: 2px !important;
- }
-
- .box {
- background-color: #2c2f36 !important;
- margin-bottom: 8px;
- }
-
- .box_addartists .body,
- .box_addtag .body {
- padding: 10px;
- }
-
- .pad h3,
- .pad h4,
- .padbox h3,
- .padbox h4 {
- margin-top: 0;
- padding-top: 0;
- }
-
- /*
- .sidebar {
- float: right;
- width: 244px;
- height: 100%;
- }
- */
-
- .sidebar .box .pad form {
- padding-bottom: 20px;
- }
-
- .body {
- background-color: #2c2f36;
- padding: 5px 10px 10px 10px;
- }
-
- /*
- .main_column {
- width: 646px;
- float: left;
- }
- */
-
- #logo {
- width: 900px;
- height: 60px;
- background-position: 0 12px;
- background-repeat: no-repeat;
- }
-
- #logo a {
- border: none;
- width: 230px;
- height: 60px;
- display: block;
- }
-
- #logo a::before {
- content: "torrents.bio";
- font-size: 40px;
- line-height: 56px;
- font-weight: 100;
- font-family: sans-serif;
- }
-
- .nav_dropdown > div {
- position: absolute;
- width: 135.56px;
- text-align: center;
- background: #509599;
- margin-top: 50px;
- z-index: 99999;
- left: 0;
- }
-
- #menu > ul > .nav_dropdown:hover {
- background-color: #509599;
- }
-
- #menu > ul > .nav_dropdown > div > a:hover {
- color: #e9e9e9;
- }
-
- #nav_links {
- max-width: 40px;
- }
-
- .nav_dropdown > div > a {
- display: none;
- color: white;
- height: 50px;
- line-height: 50px;
- }
-
- #nav_links > #links_menu {
- margin-left: -95.56px;
- }
-
- .nav_dropdown:hover > div > a {
- display: block;
- }
-
- #menu > ul > li > a:hover,
- .nav_dropdown:hover > div > a:hover {
- background-color: rgba(255, 255, 255, 0.2);
- }
-
- #userinfo {
- position: absolute;
- top: 10px;
- right: 0;
- z-index: 50;
- text-align: right;
- }
-
- #userinfo > ul {
- height: 17px;
- }
-
- #userinfo ul li {
- display: inline-block;
- line-height: 20px;
- vertical-align: middle;
- margin: 0 0.1em;
- padding: 2px;
- }
-
- #userinfo_major > li,
- #userinfo_stats > li,
- .linkbox .brackets {
- margin-left: 8px;
- }
-
- #userinfo_minor > li,
- #userinfo_minor > li > span {
- float: right;
- }
-
- #userinfo_minor > li > ul {
- display: none;
- background: #23252a;
- padding: 6px 10px;
- margin-top: 26px;
- }
-
- #userinfo_minor > li > ul > li {
- display: block;
- }
-
- #userinfo_stats {
- color: #abd6ad;
- width: auto;
- z-index: 1001;
- }
-
- #userinfo_stats a:hover {
- text-decoration: underline;
- }
-
- #searchbutton,
- .hide {
- display: none;
- }
-
- #userinfo_stats .stat,
- #userinfo_stats a,
- .colhead_dark a {
- color: #fff;
- }
-
- #menu {
- height: 50px;
- border-radius: 5px 5px 0 0;
- }
-
- #menu > ul {
- display: flex;
- }
-
- #menu > ul > li {
- position: relative;
- list-style: none;
- display: flex;
- flex: 1 1 90px;
- margin: 0;
- }
-
- #menu > ul > li > a {
- display: inline-block;
- box-sizing: border-box;
- width: 100%;
- height: 50px;
- line-height: 50px;
- text-align: center;
- vertical-align: middle;
- color: #fff;
- text-decoration: none;
- overflow: hidden;
- white-space: nowrap;
- }
-
- #menu > ul > li:nth-of-type(1),
- #menu > ul > li:nth-of-type(1) > a {
- border-radius: 5px 0 0 0;
- }
-
- #menu > ul > li:nth-of-type(10),
- #menu > ul > li:nth-of-type(10) > a {
- border-radius: 0 5px 0 0;
- }
-
- #menu > ul > li:nth-of-type(1) {
- background-color: #80af8a;
- }
-
- #menu > ul > li:nth-of-type(2) {
- background-color: #78aa86;
- }
-
- #menu > ul > li:nth-of-type(3) {
- background-color: #6fa585;
- }
-
- #menu > ul > li:nth-of-type(4) {
- background-color: #659f82;
- }
-
- #menu > ul > li:nth-of-type(5) {
- background-color: #58977f;
- }
-
- #menu > ul > li:nth-of-type(6) {
- background-color: #4b907f;
- }
-
- #menu > ul > li:nth-of-type(7) {
- background-color: #3d8a81;
- }
-
- #menu > ul > li:nth-of-type(8) {
- background-color: #2e8180;
- }
-
- #menu > ul > li:nth-of-type(9) {
- background-color: #247a80;
- }
-
- #menu > ul > li:nth-of-type(10) {
- background-color: #1e7682;
- border-radius: 0 5px 0 0;
- }
-
- .alertbar {
- background-color: #4b907f;
- text-align: center;
- color: #fff;
- width: 900px;
- height: 18px;
- margin: 2px 0;
- padding: 9px 0;
- vertical-align: middle;
- }
-
- .alertbar.error {
- background-color: #c73f3f;
- }
-
- .alertbar.warning {
- background-color: #c58b09;
- }
-
- .alertbar a {
- display: inline-block;
- position: relative;
- left: 0;
- height: 18px;
- color: #fff;
- text-decoration: underline;
- }
-
- .alertbar.modbar > a {
- margin: 0 5px;
- }
-
- .torrent_table .group a,
- .ui-state-hover,
- a.ui-state-hover,
- li.ui-state-hover {
- color: #fff;
- }
-
- .alertbar a:hover,
- .tags a:hover {
- color: #fff;
- text-decoration: none;
- }
-
- .alertbar a[href="news.php"] {
- background: linear-gradient(#045362, #0d5968);
- }
-
- .alertbar #del_announce {
- left: 432px;
- top: -45px;
- }
-
- #alerts.countdown_wrapper .alertbar {
- color: #fff;
- }
-
- .alertbar[style="border:1px solid #360;background-color:#120;margin-bottom:3px;"] {
- color: #fff;
- border: none;
- margin-bottom: 2px;
- height: 36px;
- }
-
- #searchbars {
- box-sizing: border-box;
- width: 900px;
- height: 50px;
- padding: 8px 0;
- background: #3b3f47;
- margin-bottom: 2px;
- display: flex;
- }
-
- #searchbars > .search_form {
- flex: 1 1 auto;
- text-align: center;
- }
-
- #searchbars input {
- box-sizing: border-box;
- max-width: 10em;
- height: 34px;
- border: none;
- border-radius: 2.5px;
- background-color: #2b2d33;
- padding: 7px 11px 7px 8px;
- color: #c6c9c9;
- font-size: 12px;
- }
-
- #searchbars ul {
- margin: 0;
- padding: 0;
- list-style: none;
- display: block;
- }
-
- #searchbars ul li {
- display: inline;
- float: left;
- margin: 0 7px 0 0;
- position: relative;
- list-style: none;
- }
-
- #searchbars ul li:first-child {
- margin-left: 48px;
- }
-
- #searchbars ul li form {
- display: inline;
- margin: 0;
- }
-
- #settings_sections {
- padding-bottom: 10px;
- padding: 0px;
- }
-
- .newmem {
- background-color: #222;
- text-align: center;
- font-size: 0.95em;
- margin: 0 auto;
- padding: 5px;
- }
-
- #cat-selector ul li {
- display: inline;
- width: 12em;
- height: 1em;
- float: left;
- }
-
- div.contenth textarea {
- background-color: #373a42;
- border: 1px solid #5b5e64;
- color: #fff;
- font-family: "Open Sans", Helvetica, Arial, Tahoma, sans-serif;
- font-size: 1.1em;
- padding: 2px 3px;
- }
-
- div.linkbox {
- text-align: center;
- padding: 5px;
- }
-
- .linkbox > strong {
- color: #83e4a6;
- }
-
- #banner {
- width: 900px;
- }
-
- #torrents #content .thin h2 a img {
- width: 900px;
- margin-top: -5px;
- }
-
- #torrents .sidebar table.box {
- font-size: 1em;
- margin-top: 2px;
- width: 252px;
- padding: 0;
- }
-
- #torrents .main_column .box.pad {
- background-color: #23252a;
- padding-top: 10px;
- }
-
- input[value="Make Default"] {
- margin-left: -0.6em;
- }
-
- .ui-menu .ui-menu-item a {
- padding: 5px 9px;
- background: #085565;
- }
-
- .ui-state-focus,
- .ui-state-hover,
- .ui-widget-content .ui-state-focus,
- .ui-widget-content .ui-state-hover,
- .ui-widget-header .ui-state-focus,
- .ui-widget-header .ui-state-hover {
- background: #085565;
- border: none;
- }
-
- #ui-active-menuitem {
- background: #0b4a57;
- margin: 0;
- }
-
- .ui-widget {
- font-family: "Open Sans", Helvetica, Arial, Tahoma, sans-serif;
- }
-
- .ui-widget-overlay {
- background: #23252a;
- opacity: 0.5;
- }
-
- .ui-widget-content {
- border: none !important;
- background: #055363 !important;
- color: #fff !important;
- padding: 0 !important;
- }
-
- .ui-widget-header {
- background: none !important;
- border: none !important;
- }
-
- .ui-state-default {
- background: #17191c !important;
- border: none !important;
- width: 48px !important;
- height: 36px !important;
- margin: 1px !important;
- }
-
- .ui-state-default a {
- margin-left: 3px !important;
- margin-top: 4px !important;
- }
-
- .ui-state-active,
- .ui-tabs-selected,
- .ui-widget-content .ui-state-active,
- .ui-widget-header .ui-state-active {
- background: #2c2f36 !important;
- color: #fff;
- margin: 1px !important;
- }
-
- .ui-state-hover,
- .ui-widget-content .ui-state-hover,
- .ui-widget-header .ui-state-hover {
- background: #222429 !important;
- color: #fff;
- }
-
- .ui-tabs {
- width: 636px !important;
- font-size: 1.1em !important;
- background-color: #2c2f36 !important;
- }
-
- .ui-tabs .ui-tabs-panel {
- background-color: #2c2f36 !important;
- }
-
- .ui-tabs-nav {
- width: 48px !important;
- margin-top: -8px !important;
- margin-bottom: -10px !important;
- margin-left: -1px !important;
- }
-
- .ui-tabs-panel {
- width: 564px !important;
- }
-
- .ui-corner-all {
- -moz-border-radius: 0 !important;
- -webkit-border-radius: 0 !important;
- border-radius: 0 !important;
- }
-
- .ui-corner-left {
- border-top-left-radius: 0 !important;
- border-bottom-left-radius: 0 !important;
- }
-
- .ui-autocomplete-loading {
- background-color: #2c2f36 !important;
- background-image: none !important;
- }
-
- .ui-dialog-titlebar.ui-widget-header.ui-corner-all.ui-helper-clearfix {
- background-color: #2c2f36 !important;
- }
-
- #recommend td[width="1%"] {
- color: transparent;
- }
-
- .welcome {
- font-size: 1em;
- background-color: #282828;
- border: 1px solid #303030;
- }
-
- .b1h,
- .b2bh,
- .b2h,
- .b3bh,
- .b3h,
- .b4bh,
- .b4h,
- .contenth {
- background: none !important;
- }
-
- .b1bh,
- .b1h,
- .b2bh,
- .b2h,
- .b3bh,
- .b3h,
- .b4bh,
- .b4h {
- background: #fefefe;
- border-left: 0 solid #aaa !important;
- border-right: 0 solid #aaa !important;
- height: 2px;
- margin: 0 1px;
- }
-
- .contenth {
- border-left: 0 hidden !important;
- border-right: 0 hidden !important;
- color: #fff !important;
- }
-
- .body,
- .head,
- .pad {
- padding: 12px;
- }
-
- .head {
- background: #52555c;
- box-sizing: border-box;
- }
-
- #reseed_box {
- padding-bottom: 0;
- }
-
- #reseed_box .sign {
- text-align: left;
- }
-
- #reseed_box #swapreseed {
- color: #85878f;
- position: relative;
- left: 468px;
- }
-
- #reseed_box #swapreseed:hover {
- color: #92d4a0;
- }
-
- #reseed_box .head {
- margin-bottom: 2px !important;
- }
-
- .tags {
- font-style: italic;
- padding: 0 0 0 20px;
- }
-
- .tags a {
- color: #7e7e7e;
- }
-
- ul.nobullet {
- padding-bottom: 2px;
- }
-
- ul.nobullet,
- ul.nobullet li {
- list-style-type: none;
- }
-
- table {
- width: 100%;
- border-collapse: collapse;
- }
-
- td {
- padding: 5px;
- }
-
- #torrents .torrent_table td:first-child,
- td:first-child {
- padding-left: 12px;
- }
-
- #torrents .torrent_table td:last-child,
- td:last-child {
- padding-right: 12px;
- }
-
- td.tdleft {
- text-align: left;
- padding: 5px;
- }
-
- td.tdcenter {
- text-align: center;
- padding: 5px;
- }
-
- td.tdright {
- text-align: right;
- padding: 5px;
- }
-
- .forum_group_header {
- background-color: #373a42 !important;
- color: #fff;
- font-weight: 300;
- margin-top: 2px;
- }
-
- .colhead {
- background: #565961;
- font-weight: 300;
- color: #fff;
- }
-
- .colhead td,
- .colhead_dark td,
- td.colhead {
- padding-top: 12px;
- padding-bottom: 12px;
- }
-
- .colhead_dark {
- background: linear-gradient(#52555c, #585b62);
- color: #fff;
- vertical-align: middle;
- }
-
- tbody .colhead_dark {
- background: linear-gradient(#52555c, #585b62);
- color: #fff !important;
- vertical-align: middle;
- }
-
- ul.navigation {
- background-color: #565961 !important;
- color: #fff;
- text-align: center;
- list-style: none;
- font-weight: 300 !important;
- padding: 10px !important;
- }
-
- ul.navigation li {
- display: inline;
- padding: 0 !important;
- margin-right: -2px !important;
- }
-
- ul.navigation a {
- color: #fff;
- text-decoration: none;
- padding: 10px 20px !important;
- }
-
- ul.navigation a:hover {
- color: #fff !important;
- background-color: #2f7e8c !important;
- }
-
- ul.navigation a:focus {
- color: #fff !important;
- background-color: #2b6d79 !important;
- outline: 0;
- }
-
- ul.navigation a.selected {
- color: #fff !important;
- background-color: #085565 !important;
- }
-
- .scroll .panel {
- background-color: #2c2f36 !important;
- }
-
- .scroll .panel tr {
- border: none;
- }
-
- .box.tvshows .snatches + .pad {
- padding: 0;
- }
-
- .leftbar {
- width: 86px !important;
- padding: 0 10px 10px !important;
- }
-
- .leftbar img {
- width: 106px;
- margin-left: -10px;
- }
-
- .midbar {
- margin-left: 108px !important;
- }
-
- .midbar .box {
- padding: 10px !important;
- }
-
- .midbar .head {
- width: 772px;
- }
-
- .midbar .box.info > div {
- margin-bottom: 10px;
- }
-
- .midbar .box.usermenu {
- padding: 0 !important;
- margin-bottom: 2px !important;
- }
-
- .password_strength_bg {
- background-color: #2c2f36 !important;
- width: 289px !important;
- }
-
- .password_strength_container {
- width: 289px !important;
- padding: 5px !important;
- }
-
- .password_strength {
- width: 289px !important;
- }
-
- td.label {
- font-weight: 300;
- text-align: right;
- width: 180px;
- }
-
- .filter_torrents td.label {
- width: 260px;
- }
-
- table.slice {
- margin-top: -1px;
- }
-
- .error_message {
- border: 1px solid #666;
- background-color: #af2525;
- text-align: center;
- color: #fff;
- padding: 3px 0;
- }
-
- .save_message {
- margin-top: 2px;
- background-color: #93d4a2 !important;
- text-align: center;
- color: #fff;
- padding: 10px;
- }
-
- .elem_error {
- border: 3px solid #b00d0d;
- }
-
- ul.stats li {
- padding: 0 0 1px;
- }
-
- ul.stats tr {
- border: none;
- }
-
- ul.poll li {
- margin: 0;
- padding: 0 0 0 10px;
- }
-
- ul.poll li.graph {
- margin-bottom: 3px;
- padding-left: 20px;
- }
-
- span.center_poll {
- background: #565960;
- border-radius: 3px;
- display: inline-block;
- height: 8px;
- min-width: 8px;
- }
-
- .show_torrents_link {
- border: none;
- width: 28px;
- height: 28px;
- display: block;
- }
-
- #series .box .body img {
- margin: -10px;
- margin-top: -6px !important;
- width: 646px;
- height: 100%;
- }
-
- #series .sidebar .box .nobullet {
- text-align: center;
- }
-
- #series .sidebar .box .stats {
- text-align: initial !important;
- }
-
- .torrent_table tr {
- vertical-align: top;
- }
-
- .torrent_table tbody .pad > td,
- .torrent_table tbody > .pad {
- padding: 0;
- }
-
- .colhead .sign,
- .colhead_dark .sign {
- vertical-align: middle;
- text-align: right;
- font-size: 1.2em;
- font-weight: 300;
- }
-
- .torrent_table tr.group_torrent.first {
- border-top: 3px solid #565960;
- }
-
- .torrent_table tr.group_torrent a:hover span {
- color: #92d4a0 !important;
- }
-
- #series .main_column .box,
- #series .main_column table.border {
- margin-top: 2px;
- }
-
- .season {
- color: #ff2419;
- }
-
- .episode {
- color: #00aeef;
- }
-
- .torrent_table .colhead_dark {
- background-color: #55585f;
- height: 36px !important;
- vertical-align: middle !important;
- }
-
- .torrent_table .group {
- background-color: #2c2f36;
- }
-
- .torrent_table div.tags {
- font-weight: 400;
- }
-
- .torrent_table tr .center {
- vertical-align: middle;
- text-align: center;
- }
-
- .torrent_table tr.group_torrent td a span {
- float: left;
- white-space: pre;
- }
-
- .torrent_table tr.group_torrent td {
- padding: 8px;
- }
-
- .torrent_table tr.group_torrent .group.discog {
- padding: 8px 10px;
- }
-
- .torrent_table tr.group_torrent .group.discog .episode,
- .torrent_table tr.group_torrent .group.discog b {
- color: #37a9a4 !important;
- }
-
- .torrent_table tr.group_torrent .group.discog .episode:hover {
- color: #fff !important;
- }
-
- .torrent_table tr.group_torrent .group.discog .season {
- color: #92d4a0 !important;
- }
-
- .torrent_table tr.group_torrent .group.discog .season:hover {
- color: #fff !important;
- }
-
- .torrent span,
- .group span {
- font-weight: 400;
- float: right;
- }
-
- .torrent span img {
- vertical-align: text-top;
- }
-
- .nobr {
- white-space: nowrap;
- }
-
- #collages .sign,
- #torrents .sign {
- padding: 5px;
- }
-
- .filter_torrents {
- width: 900px;
- }
-
- .filter_torrents > .box {
- margin-top: 2px;
- }
-
- .filter_torrents > .box.pad.center {
- margin-top: -48px;
- margin-bottom: 10px;
- }
-
- .filter_torrents .box.pad .cat_list {
- position: relative;
- left: -12px;
- width: 900px;
- }
-
- .filter_torrents .box.pad .cat_list tbody tr td input[type="checkbox"][name="filter_cat[1]"],
- .filter_torrents .box.pad .cat_list tbody tr td label[for="cat_1"] {
- position: relative;
- left: 376px;
- }
-
- .filter_torrents .box.pad .cat_list#taglist td {
- background-color: #373a42 !important;
- }
-
- .filter_torrents .box.pad .cat_list#taglist tr {
- border-bottom: none;
- }
-
- .filter_torrents .box.pad .cat_list td[width="12.5%"] {
- padding-left: 17px;
- }
-
- .filter_torrents .box.pad .cat_list td.label {
- padding-right: 17px;
- }
-
- .filter_torrents .box.pad .cat_list[width="100%"] td {
- background-color: #373a42 !important;
- }
-
- .filter_torrents .country_list {
- position: relative;
- left: -12px;
- width: 900px;
- }
-
- .filter_torrents .country_list td {
- padding-left: 12px;
- background-color: #373a42 !important;
- }
-
- .filter_torrents .country_list tr {
- border-bottom: none;
- }
-
- #bonus table[style="width:100%"] td,
- #bonus table[style="width:100%"] tr {
- padding: 10px !important;
- border-color: #23252a;
- border-style: solid;
- border-width: 2px;
- }
-
- .forum_post.forum_unread {
- border-top: 2px solid #c7fada;
- }
-
- .forum_post.staff_post.forum_unread {
- border-top: 2px solid #fac7df;
- }
-
- .forum_post.staff_post .colhead_dark {
- background: #634852;
- }
-
- .forum_post.sticky_post {
- border: 3px solid #634852;
- }
-
- table.forum_post input[type="button"] {
- margin-right: 2px;
- }
-
- table.forum_post span[style="float:left;"] img,
- table.forum_post td[colspan="2"] {
- vertical-align: middle;
- }
-
- td.avatar {
- width: 150px;
- padding: 0;
- }
-
- table.forum_post td.body {
- width: 646px;
- }
-
- /* Because Firefox apparently doesn't understand "100%" in tables */
-
- #forums table.forum_post td.body > div {
- max-width: 730px;
- }
-
- .last_edited {
- opacity: 0.6;
- }
-
- tbody {
- max-width: 646px;
- }
-
- blockquote {
- border: 1px dashed #666;
- margin: 10px;
- padding: 10px;
- }
-
- .signature {
- border-top: 1px dotted #666;
- margin: 2em 0 0;
- padding: 0.5em 0 0;
- }
-
- div.user_details {
- padding: 5px;
- }
-
- tr.unreadpm {
- background-color: #651809 !important;
- }
-
- .permission_head {
- width: 400px;
- margin-left: auto;
- margin-right: auto;
- }
-
- .permissions {
- width: 930px;
- margin-left: auto;
- margin-right: auto;
- }
-
- .permission_container {
- float: left;
- width: 300px;
- padding: 5px;
- }
-
- .permission_container input {
- vertical-align: top;
- margin: 0 3px 5px 0;
- }
-
- ul .invitetree {
- margin: 0 0 0 25px;
- }
-
- .invitetree li {
- list-style: none;
- margin: 10px 2px;
- }
-
- #left_poll {
- width: 2px;
- height: 9px;
- background: #3caba6 !important;
- float: left;
- margin: 0;
- padding: 0;
- }
-
- #center_poll {
- height: 9px;
- background-color: #3caba6 !important;
- float: left;
- margin: 0;
- padding: 0;
- }
-
- #right_poll {
- width: 2px;
- height: 9px;
- background: #3caba6 !important;
- float: left;
- margin: 0;
- padding: 0;
- }
-
- .curtain {
- position: fixed;
- top: 0;
- left: 0;
- width: 100%;
- height: 100%;
- background-color: #000;
- z-index: 1001;
- }
-
- .lightbox {
- position: fixed;
- text-align: center;
- top: 5%;
- left: 5%;
- width: 90%;
- height: 90%;
- z-index: 1002;
- overflow: auto;
- padding: 0;
- }
-
- pre {
- color: #fff;
- background: black;
- border: 1px dashed #55585f !important;
- margin: 10px;
- padding: 10px;
- }
-
- code {
- background: black;
- border: none;
- }
-
- #donation {
- position: absolute;
- display: inline;
- width: 0;
- top: 7px;
- right: 38px;
- padding: 0.6em 0;
- text-align: center;
- font-size: 1em;
- color: #fff;
- z-index: 1001;
- }
-
- #DonBk,
- #DonBr {
- display: none;
- }
-
- #DonInfo a {
- display: block;
- height: 32px;
- width: 36px;
- color: #fff !important;
- line-height: 90px;
- margin-top: -153px;
- }
-
- #blog .thin > br,
- #news .thin > br {
- display: none;
- }
-
- #blog .box,
- #news .box {
- margin-bottom: 2px;
- }
-
- #blog .head,
- #news .head {
- width: 900px;
- }
-
- #forums .box {
- width: 900px;
- margin-top: 2px;
- }
-
- #forums .head {
- width: 900px;
- }
-
- #forums #content > br {
- display: none;
- }
-
- #forums #content .thin > p {
- margin-top: -12px;
- }
-
- #forums .box.pad {
- padding: 1em 0;
- background-color: #23252a;
- }
-
- #forums #content .thin > table.forum_post {
- border-collapse: collapse !important;
- }
-
- #actorshowcase .thin {
- text-align: center;
- }
-
- #actorshowcase .thin > table {
- display: inline-block;
- width: 25%;
- height: 387px;
- }
-
- #actorshowcase .thin > table > tbody {
- height: 387px;
- }
-
- .textarea_wrap {
- padding-top: 15px;
- }
-
- #quickpost {
- color: #eee !important;
- font-size: 1.1em !important;
- }
-
- #quickpostform {
- background-color: transparent;
- }
-
- #quickreplybuttons input[value="Editor"] {
- margin-right: 2px;
- }
-
- div.contenth #quickpost {
- right: -2px;
- }
-
- .bbcode_bar {
- background: #373a42;
- border: 1px solid #5b5e64;
- border-bottom: none;
- }
-
- .bbcode_bar > li > a {
- min-width: 15px;
- }
-
- .bbcode_bar .emoji_box {
- border: 1px solid #5b5e63;
- background-color: #373a42 !important;
- }
-
- #friends table[width="100%"] td {
- text-align: center;
- }
-
- .tickets_search {
- width: 800px;
- margin-left: auto;
- margin-right: auto;
- font-size: 0.8em;
- }
-
- .tickets_categories {
- float: left;
- text-align: left;
- padding: 0.5em;
- }
-
- .tickets_status {
- float: right;
- text-align: left;
- padding: 0.5em;
- }
-
- .small_label {
- width: 0;
- text-align: right;
- font-weight: 300;
- }
-
- .filter_tickets {
- width: 850px;
- margin-left: auto;
- margin-right: auto;
- margin-bottom: 15px;
- }
-
- .rank {
- text-align: center;
- font: small-caps 2.4em Georgia, "Times New Roman", Times, serif;
- width: 86px;
- margin-top: 10px;
- margin-left: auto;
- margin-right: auto;
- position: relative;
- }
-
- .rank img {
- clear: both;
- }
-
- .rankimghide {
- display: none;
- margin: 0;
- padding: 0;
- }
-
- .center h3 {
- padding-top: 4px;
- font-size: 1em;
- }
-
- .review_row,
- .review_row.box {
- margin-top: 2px;
- }
-
- .inline_rank {
- position: relative;
- top: 80px;
- left: 14px;
- font: small-caps 1.4em Georgia, "Times New Roman", Times, serif;
- }
-
- .inline_rank img {
- width: 2%;
- }
-
- .review_title {
- font: small-caps 2.1em Georgia, "Times New Roman", Times, serif;
- margin-left: 17px;
- }
-
- .review_body {
- float: right;
- width: 765px;
- overflow: auto;
- margin: 6px 0 0;
- padding: 1px;
- }
-
- .review_details {
- font-style: italic;
- float: right;
- padding-right: 12px;
- padding-bottom: 10px;
- padding-top: 5px;
- }
-
- .review_search {
- width: 900px;
- text-align: center;
- margin: auto;
- }
-
- .review_search input {
- width: 400px;
- text-align: center;
- }
-
- .left_tabs {
- float: left;
- width: 100px;
- }
-
- a.tab {
- display: block;
- background-color: rgba(69, 69, 69, 0.35);
- text-align: center;
- color: #fff;
- font-weight: 300;
- text-transform: lowercase;
- padding: 4px;
- }
-
- #content .home .main_column {
- float: right;
- }
-
- #content .home .main_column .of_the_month {
- margin-left: -2px;
- }
-
- #content .home .main_column .of_the_month .head {
- width: 302px;
- }
-
- #content .home .main_column .of_the_month .box {
- width: 302px;
- margin-left: 2px;
- padding-bottom: 0 !important;
- }
-
- #content .home .main_column .of_the_month .box img {
- width: 322px;
- height: 474px;
- margin-left: -10px;
- margin-top: -10px;
- }
-
- #content .home .main_column .of_the_month .box li {
- padding-bottom: 10px;
- }
-
- .home table,
- .home td {
- border: 0;
- }
-
- .home .sidebar {
- float: left;
- }
-
- #torrents .torrent_table .sign {
- text-align: center;
- }
-
- .sidebar .box .nobullet img {
- width: initial;
- margin: initial;
- }
-
- #content .home .box {
- margin-bottom: 2px;
- }
-
- #content .home .sidebar #last_uploads img {
- width: 252px;
- margin-left: -10px;
- margin-top: -7px;
- margin-bottom: 4px;
- }
-
- #content .home .sidebar #last_uploads li b {
- display: none;
- }
-
- #content .home #last_uploads {
- margin-top: -3px;
- }
-
- #content .home th {
- text-align: left;
- padding: 5px;
- }
-
- #content .home tr.colhead {
- border: 0;
- border-bottom: 1px solid #000;
- }
-
- #content .home th:first-child {
- border-right: 1px solid #000;
- }
-
- #content .home th:last-child {
- border-left: 1px solid #000;
- }
-
- a.tab:hover {
- text-decoration: none;
- background-color: rgba(69, 69, 69, 0.55);
- }
-
- a.tab#selected {
- background-color: rgba(145, 168, 175, 0.3);
- }
-
- div.thin2 {
- float: left;
- width: 900px;
- margin: auto;
- }
-
- p#preloader {
- margin: 0;
- padding: 1em 1em 1em 3em;
- }
-
- .profileLink a {
- display: block;
- color: #fff;
- border-top: 1px solid #ccc;
- padding: 0.3em 1em;
- }
-
- div#gift {
- width: 1px;
- height: 1px;
- position: relative;
- top: 130px;
- left: 895px;
- z-index: 999;
- }
-
- /*
- .button {
- border: 0 solid #131313;
- color: #eee;
- height: 30px;
- letter-spacing: 1px;
- line-height: 16px;
- overflow: visible;
- text-transform: uppercase;
- padding: 5px 12px;
- }
- */
-
- #store #content {
- position: relative;
- margin-top: 2px;
- }
-
- #store #content > div {
- position: initial !important;
- }
-
- .box #summary {
- position: relative;
- left: -10px;
- }
-
- .info table,
- .info td,
- .info tr,
- .requests table,
- .requests td,
- .requests tr {
- border: 0;
- vertical-align: top;
- margin: 0;
- padding: 0;
- }
-
- .info td {
- border-bottom: 0 solid gray !important;
- height: 50px;
- vertical-align: middle;
- width: 20px;
- }
-
- #cat-selector ul,
- html {
- width: 100%;
- }
-
- #logo a:hover,
- .cat_list tr td,
- .torrent_table td.group,
- img {
- border: none;
- }
-
- #wrapper,
- .thin {
- width: 900px;
- margin: 0 auto;
- }
-
- .number,
- .right {
- text-align: right;
- }
-
- .number_column {
- text-align: center;
- }
-
- .pad {
- padding: 1em;
- }
-
- .home .extrapad {
- padding: 0;
- }
-
- tr {
- background-color: #2c2f36;
- border-bottom: 2px solid #2c2f36;
- }
-
- .forum_post tr {
- border-bottom: none;
- }
-
- .search_form .submit,
- .filter_tickets .submit,
- .filter_torrents .submit {
- text-align: right;
- padding-top: 5px;
- }
-
- .torrent_table tr.group {
- background-color: #3e4046;
- }
-
- .torrent_table tr.group_torrent,
- tr.torrent {
- background-color: #23252a;
- }
-
- tr.torrent:nth-of-type(even),
- tr.request:nth-of-type(even) {
- background-color: #272a2f;
- }
-
- .group_torrent span,
- .torrent_table tr.group_torrent .year {
- float: right;
- }
-
- .tl_reported {
- color: #e85a5a;
- }
-
- .tl_free {
- color: gold;
- }
-
- .tl_seeding {
- color: #8de88d;
- }
-
- .tl_snatched {
- color: orange;
- }
-
- .tl_leeching {
- color: #ff3e3e;
- }
-
- form tr {
- background-color: #2c2f36;
- }
-
- #playbutton {
- position: relative !important;
- top: -138px !important;
- left: 0 !important;
- margin-bottom: -110px !important;
- }
-
- #tiptip_content {
- font-size: 1em !important;
- color: #fff !important;
- text-shadow: none !important;
- padding: 4px 8px;
- border: 2px solid #5b5e64 !important;
- background-color: #373a42 !important;
- background-image: none !important;
- border-radius: 0 !important;
- -webkit-border-radius: 0 !important;
- -moz-border-radius: 0 !important;
- box-shadow: none !important;
- -webkit-box-shadow: none !important;
- -moz-box-shadow: none !important;
- }
-
- #tiptip_arrow,
- #tiptip_arrow_inner {
- border: none !important;
- }
-
- a.last_read > svg {
- fill: #909090;
- margin: 3px 6px;
- }
-
- .forum_index h3,
- .forum_list h3 {
- margin-top: 24px;
- }
-
- .forum_index h4,
- .forum_list h4 {
- font-size: 12px;
- }
-
- .forum_index td {
- position: relative;
- }
-
- .alternate_rows .row:nth-child(odd) {
- background: #33363d;
- }
-
- .forum_index td.read:after,
- #forums td.unread:after {
- content: "";
- position: absolute;
- height: 8px;
- width: 8px;
- top: 9px;
- left: 7px;
- border-radius: 1px;
- }
-
- .forum_index td.read:after {
- background-color: #20717c;
- }
-
- .forum_index td.unread:after {
- background-color: #47b39a;
- }
-
- .forum_list .forum_index td.read:after,
- #forums .forum_list td.unread:after {
- top: 14px;
- }
-
- .forum_index td.read_sticky:after,
- #forums td.unread_sticky:after,
- .forum_index td.read_locked_sticky:after,
- #forums td.unread_locked_sticky:after {
- content: "";
- position: absolute;
- height: 0px;
- width: 0px;
- top: 9px;
- left: 6px;
- border-left: 5px solid transparent;
- border-right: 5px solid transparent;
- }
-
- .forum_index td.read_sticky:after,
- .forum_index td.read_locked_sticky:after {
- border-bottom: 10px solid #20717c;
- }
-
- .forum_index td.unread_sticky:after,
- .forum_index td.unread_locked_sticky:after {
- border-bottom: 10px solid #47b39a;
- }
-
- .forum_index td.read_locked:before,
- #forums td.unread_locked:before,
- .forum_index td.read_locked_sticky:before,
- #forums td.unread_locked_sticky:before {
- content: "";
- position: absolute;
- height: 2px;
- width: 8px;
- top: 12px;
- left: 7px;
- border-radius: 1px;
- }
-
- .forum_index td.read_locked:before,
- .forum_index td.read_locked_sticky:before {
- background-color: #20717c;
- }
-
- .forum_index td.unread_locked:before,
- .forum_index td.unread_locked_sticky:before {
- background-color: #47b39a;
- }
-
- .hide_torrents,
- .show_torrents {
- position: relative;
- cursor: pointer;
- }
-
- .hide_torrents > .show_torrents_link:after,
- .show_torrents > .show_torrents_link:after {
- content: "";
- position: absolute;
- width: 19px;
- height: 3px;
- top: 13px;
- left: 5px;
- border-radius: 2px;
- background-color: #74c796;
- }
-
- .show_torrents > .show_torrents_link:before {
- content: "";
- position: absolute;
- width: 3px;
- height: 19px;
- top: 5px;
- left: 13px;
- border-radius: 2px;
- background-color: #74c796;
- }
-
- .search_warning {
- fill: #aaa;
- }
-
- .dead {
- opacity: 0.7;
- }
-
- caption {
- border-bottom: 1px dashed #666;
- font-weight: bold;
- }
-
- .collage_image:hover {
- box-shadow: 0px 0px 0px 3px #88c796;
- position: relative;
- }
-
- /* Fucking noty */
-
- .noty_bar {
- border-left: #3eaca7 2px solid;
- }
-
- #noty_bottomRight_layout_container li {
- background-color: #52555c !important;
- color: #e9e9e9 !important;
- border: none !important;
- }
-
- .noty_buttons {
- background-color: #2c2f36 !important;
- border-top: none !important;
- }
-
- .tag_parody {
- color: #e8ab3a !important;
- }
-
- .tag_character {
- color: #529e63 !important;
- }
-
- .tag_male {
- color: #3d77e2 !important;
- }
-
- .tag_female {
- color: #e896e8 !important;
- }
-
- .tex_img {
- filter: invert(100%);
- }
-
- #coverCont {
- font-size: 0;
- padding: 5px;
- background-color: #565960;
- }
-
- /* Pink Additions */
-
- body.style_pink h1 a,
- body.style_pink h2 a,
- body.style_pink h3 a,
- body.style_pink h4 a,
- body.style_pink h5 a,
- body.style_pink h6 a {
- color: #df7cc2;
- }
-
- body.style_pink .cats_anime:after {
- color: #78467f;
- }
-
- body.style_pink .group .cats_anime {
- background-color: #78467f;
- }
-
- body.style_pink .cats_movies:after {
- color: #4f3063;
- }
-
- body.style_pink .group .cats_movies {
- background-color: #4f3063;
- }
-
- body.style_pink .cats_manga:after {
- color: #9f5c9c;
- }
-
- body.style_pink .group .cats_manga {
- background-color: #9f5c9c;
- }
-
- body.style_pink .cats_games:after {
- color: #c871b9;
- }
-
- body.style_pink .group .cats_games {
- background-color: #c871b9;
- }
-
- body.style_pink .cats_other:after {
- color: #ef86d5;
- }
-
- body.style_pink .group .cats_other {
- background-color: #ef86d5;
- }
-
- body.style_pink a:hover,
- body.style_pink .torrent_table .group a:hover {
- color: #db7bc7;
- }
-
- body.style_pink ::selection,
- body.style_pink ::-moz-selection {
- background: #8b518e;
- }
-
- /* Buttons */
- body.style_pink button:not(.editor-toolbar button),
- body.style_pink input[type="button"],
- body.style_pink input[type="submit"] {
- color: black;
- border: 1px solid #bbb;
-
- &.button-primary {
- background: #8b518e;
- border: 1px solid #bbb;
- color: black;
- }
-
- &:hover {
- background: #643c72;
- /* Primary hover default blue */
- border: 1px solid #bbb !important;
- color: black !important;
- }
-
- &:focus {
- background: #78467f;
- }
- }
-
- /*
- body.style_pink button,
- body.style_pink input[type="button"],
- body.style_pink input[type="submit"] {
- background-color: #8b518e;
- }
-
- body.style_pink button:hover,
- body.style_pink input[type="button"]:hover,
- body.style_pink input[type="submit"]:hover {
- background-color: #643c72;
- }
-
- body.style_pink button:focus,
- body.style_pink input[type="button"]:focus,
- body.style_pink input[type="submit"]:focus {
- background-color: #78467f;
- }
- */
-
- body.style_pink #userinfo_stats {
- color: #db7bc7;
- }
-
- body.style_pink #menu > ul > li:nth-of-type(1) {
- background-color: #3b2655;
- }
-
- body.style_pink #menu > ul > li:nth-of-type(2) {
- background-color: #4f3063;
- }
-
- body.style_pink #menu > ul > li:nth-of-type(3) {
- background-color: #643c72;
- }
-
- body.style_pink #menu > ul > li:nth-of-type(4) {
- background-color: #78467f;
- }
-
- body.style_pink #menu > ul > li:nth-of-type(5) {
- background-color: #8b518e;
- }
-
- body.style_pink #menu > ul > li:nth-of-type(6) {
- background-color: #9f5c9c;
- }
-
- body.style_pink #menu > ul > li:nth-of-type(7) {
- background-color: #b367aa;
- }
-
- body.style_pink #menu > ul > li:nth-of-type(8) {
- background-color: #c871b9;
- }
-
- body.style_pink #menu > ul > li:nth-of-type(9) {
- background-color: #db7bc7;
- }
-
- body.style_pink #menu > ul > li:nth-of-type(10) {
- background-color: #ef86d5;
- }
-
- body.style_pink #menu > ul > .nav_dropdown:hover,
- body.style_pink .nav_dropdown > div {
- background-color: #e295d2;
- }
-
- body.style_pink .linkbox > strong {
- color: #db7bc7;
- }
-
- body.style_pink .alertbar {
- background-color: #4f3063;
- }
-
- body.style_pink .hide_torrents > .show_torrents_link:after,
- body.style_pink .show_torrents > .show_torrents_link:after,
- body.style_pink .show_torrents > .show_torrents_link:before {
- background-color: #b367aa;
- }
-
- body.style_pink .forum_index td.read:after {
- background-color: #643c72;
- }
-
- body.style_pink .forum_index td.unread:after {
- background-color: #db7bc7;
- }
-
- body.style_pink .forum_index td.read_sticky:after,
- body.style_pink .forum_index td.read_locked_sticky:after {
- border-bottom: 10px solid #643c72;
- }
-
- body.style_pink .forum_index td.read_locked:before,
- body.style_pink .forum_index td.read_locked_sticky:before {
- background-color: #643c72;
- }
-
- body.style_pink .forum_index td.unread_sticky:after,
- body.style_pink .forum_index td.unread_locked_sticky:after {
- border-bottom: 10px solid #db7bc7;
- }
-
- body.style_pink .forum_index td.unread_locked:before,
- body.style_pink .forum_index td.unread_locked_sticky:before {
- background-color: #db7bc7;
- }
-
- body.style_pink .forum_post.forum_unread {
- border-top: 2px solid #c1569b;
- }
-
- body.style_pink .noty_bar {
- border-left: #ef86d5 2px solid;
- }
-
- body.style_pink .collage_image:hover {
- box-shadow: 0px 0px 0px 3px #ef86d5;
- }
-
- /* Haze Additions */
-
- body.style_haze {
- background-color: #53565c;
- background-image: url("beluga/haze.png");
- background-attachment: fixed;
- background-size: cover;
- }
-
- body.style_haze #logo > a {
- color: white;
- }
-
- body.style_haze #searchbars {
- background-color: rgba(24, 32, 41, 0.05);
- }
-
- body.style_haze #searchbars input {
- background: rgba(24, 32, 41, 0.3);
- border: none;
- }
-
- body.style_haze #menu li:nth-child(1) {
- background: rgba(24, 32, 41, 0.7);
- }
-
- body.style_haze #menu li:nth-child(2) {
- background: rgba(24, 32, 41, 0.65);
- }
-
- body.style_haze #menu li:nth-child(3) {
- background: rgba(24, 32, 41, 0.6);
- }
-
- body.style_haze #menu li:nth-child(4) {
- background: rgba(24, 32, 41, 0.55);
- }
-
- body.style_haze #menu li:nth-child(5) {
- background: rgba(24, 32, 41, 0.5);
- }
-
- body.style_haze #menu li:nth-child(6) {
- background: rgba(24, 32, 41, 0.45);
- }
-
- body.style_haze #menu li:nth-child(7) {
- background: rgba(24, 32, 41, 0.4);
- }
-
- body.style_haze #menu li:nth-child(8) {
- background: rgba(24, 32, 41, 0.35);
- }
-
- body.style_haze #menu li:nth-child(9) {
- background: rgba(24, 32, 41, 0.3);
- }
-
- body.style_haze #menu li:nth-child(10) {
- background: rgba(24, 32, 41, 0.25);
- }
-
- body.style_haze #menu li a:hover {
- background: white;
- color: black;
- }
-
- body.style_haze .nav_dropdown > div {
- background: rgba(24, 32, 41, 0.3);
- }
-
- body.style_haze #userinfo_minor > li > ul {
- background: white;
- color: black;
- }
-
- body.style_haze #alerts .alertbar {
- background: rgba(24, 32, 41, 0.4);
- }
-
- body.style_haze .colhead,
- body.style_haze .head {
- background: rgba(24, 32, 41, 0.4);
- }
-
- body.style_haze .colhead_dark {
- background: rgba(24, 32, 41, 0.5);
- }
-
- body.style_haze tr {
- background: rgba(75, 75, 75, 0.35);
- border-bottom: none;
- }
-
- body.style_haze .box {
- background: rgba(75, 75, 75, 0.35) !important;
- }
-
- body.style_haze select,
- body.style_haze input,
- body.style_haze textarea {
- background: rgba(24, 32, 41, 0.3);
- border: none;
- }
-
- body.style_haze table tbody a,
- body.style_haze .main_column a,
- body.style_haze .sidebar a,
- body.style_haze .box a {
- color: rgba(255, 255, 255, 0.6);
- }
-
- body.style_haze #userinfo_stats {
- color: rgba(255, 255, 255, 0.6);
- }
-
- body.style_haze #userinfo_stats a {
- color: rgba(255, 255, 255, 0.6);
- }
-
- body.style_haze #userinfo_stats .stat > span {
- color: white;
- }
-
- body.style_haze #userinfo_stats .stat > a {
- color: white;
- }
-
- body.style_haze .filter_torrents #ft_container tr {
- background: none;
- }
-
- body.style_haze tr.torrent,
- body.style_haze tr.request {
- background-color: rgba(24, 32, 41, 0.6);
- }
-
- body.style_haze tr.torrent:nth-of-type(even),
- body.style_haze tr.request:nth-of-type(even) {
- background-color: rgba(24, 32, 41, 0.4);
- }
-
- body.style_haze tr.group {
- background-color: rgba(24, 32, 41, 0.7);
- }
-
- body.style_haze tr.group_torrent {
- background-color: rgba(24, 32, 41, 0.75);
- }
-
- body.style_haze .body {
- background: none;
- }
-
- body.style_haze blockquote {
- background-color: rgba(24, 32, 41, 0.4) !important;
- border: 1px solid rgba(255, 255, 255, 0.36);
- }
-
- body.style_haze h2 a {
- color: rgba(255, 255, 255, 0.6);
- }
-
- body.style_haze .linkbox a {
- color: rgba(255, 255, 255, 0.7);
- }
-
- body.style_haze .noty_bar {
- border-left: none;
- }
-
- body.style_haze #noty_bottomRight_layout_container li {
- background-color: rgba(82, 85, 92, 0.59) !important;
- }
-
- body.style_haze .noty_buttons {
- background-color: rgba(44, 47, 54, 0.6) !important;
- }
|