Oppaitime's version of Gazelle
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

style.css 33KB

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