Frontend elements to SugoiMusic, including CSS and public/private headers.
Nevar pievienot vairāk kā 25 tēmas Tēmai ir jāsākas ar burtu vai ciparu, tā var saturēt domu zīmes ('-') un var būt līdz 35 simboliem gara.
 
 
 

2242 rindas
39 KiB

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