Frontend elements to SugoiMusic, including CSS and public/private headers.
25'ten fazla konu seçemezsiniz Konular bir harf veya rakamla başlamalı, kısa çizgiler ('-') içerebilir ve en fazla 35 karakter uzunluğunda olabilir.
 
 
 

1302 satır
20 KiB

  1. /* Layout (Torrents page) */
  2. #site_debug td{
  3. border: 1px solid #666;
  4. }
  5. /* Global */
  6. * {
  7. padding: 0em;
  8. margin: 0em;
  9. }
  10. html {
  11. width: 100%;
  12. }
  13. body {
  14. width: 100%;
  15. background-color: #000030;
  16. font-family: tahoma, helvetica, sans-serif;
  17. font-size: 8pt;
  18. color: #c6c9c9;
  19. min-width: 850px;
  20. }
  21. /* Common elements */
  22. .header a, h2{
  23. color: white;
  24. }
  25. a {
  26. text-decoration: none;
  27. border: none;
  28. color: white;
  29. }
  30. a:hover {
  31. text-decoration: underline;
  32. }
  33. button, input[type=button], input[type=submit] {
  34. background: #0B2593;
  35. box-shadow: 0 1px 1px 0 rgba(0,0,0,.14),0 3px 1px -2px rgba(0,0,0,.2),0 1px 5px 0 rgba(0,0,0,.12);
  36. color: #FFF;
  37. }
  38. button:hover, input[type=button]:hover, input[type=submit]:hover {
  39. background: #081654;
  40. }
  41. button:focus, input[type=button]:focus, input[type=submit]:focus {
  42. background: #6687ff;
  43. }
  44. .spoilerButton {
  45. max-width: 540px;
  46. }
  47. .forum_post .body a:not([href="#"]), .rule_summary a, .wiki_article a, #actual_rules a, .news_post .pad a, .store_table a {
  48. text-decoration: none;
  49. border: none;
  50. color: white;
  51. }
  52. .forum_post .body a:hover:not([href="#"]), .rule_summary a:hover, .wiki_article a:hover, #actual_rules a:hover, .news_post .pad a:hover, .store_table a:hover {
  53. text-decoration: underline;
  54. border: none;
  55. color: white;
  56. }
  57. h1,h2,h3,h4 {
  58. margin: 5px 0px;
  59. font-weight: bold;
  60. color: white;
  61. }
  62. h2 {
  63. text-align: center;
  64. font-size: 12pt;
  65. }
  66. h4 {
  67. font-size: 8pt;
  68. }
  69. p {
  70. margin: 10px 5px;
  71. }
  72. li {
  73. margin: 5px 15px;
  74. }
  75. img {
  76. border: none;
  77. }
  78. /* Styles generated by the BBCode parser */
  79. span.size1 { font-size:0.75em; }
  80. span.size2 { font-size:1em; }
  81. span.size3 { font-size:1.25em; }
  82. span.size4 { font-size:1.5em; }
  83. span.size5 { font-size:1.75em; }
  84. span.size6 { font-size:2em; }
  85. span.size7 { font-size:2.25em; }
  86. span.size8 { font-size:2.5em; }
  87. span.size9 { font-size:2.75em; }
  88. span.size10 { font-size:3em; }
  89. ul.thin { margin:0px 0px 0px 25px; padding:0px; }
  90. ul.thin li { margin:0px 0px; padding:0px; }
  91. /* Layout (Every page) */
  92. #header {
  93. width: 100%;
  94. padding: 0px 0 0 0;
  95. background: #00004d;
  96. margin-bottom: 10px;
  97. }
  98. #content {
  99. margin: auto;
  100. margin-top: 10px;
  101. /* margin-top: 100px; */
  102. width: 90%;
  103. min-width: 872px;
  104. overflow: hidden;
  105. }
  106. #footer {
  107. /* margin-top: 40px; */
  108. margin-top: 10px;
  109. width: 100%;
  110. text-align: center;
  111. padding: 1em 0;
  112. opacity: 0;
  113. transition: ease-in-out 0.3s;
  114. transition-delay: 0.7s;
  115. /* color: #c6c9c9; */
  116. }
  117. #footer:hover {
  118. opacity: 1;
  119. }
  120. #footer a {
  121. color: white;
  122. }
  123. #footer a:hover {
  124. text-decoration: underline;
  125. }
  126. #logo {
  127. width: 1140px;
  128. height: 150px;
  129. margin: 0 auto;
  130. }
  131. #logo a {
  132. border: none;
  133. width: 100%;
  134. height: 150px;
  135. display: block;
  136. }
  137. #logo a:hover {
  138. border: none;
  139. }
  140. #menu {
  141. width: 100%;
  142. text-align: center;
  143. background-color: #081653;
  144. font-size: 10pt;
  145. }
  146. #menu > ul {
  147. display: flex;
  148. width: 70%;
  149. margin: 0 auto;
  150. }
  151. #menu > ul > li {
  152. position: relative;
  153. height: 32px;
  154. display: flex;
  155. margin: 0;
  156. flex: 1 1 auto;
  157. }
  158. #menu ul > li > a {
  159. padding: 0.6em 0;
  160. display: inline-block;
  161. width: 100%;
  162. color: #FFFFFF;
  163. transition: ease-in-out 0.2s;
  164. }
  165. #menu ul li a img {
  166. vertical-align: middle;
  167. }
  168. #nav_links {
  169. max-width: 40px;
  170. }
  171. #menu ul li a.active {
  172. background-color: #565656;
  173. }
  174. #menu ul li a:hover {
  175. background-color: #0B2592;
  176. text-decoration: none;
  177. }
  178. #menu .nav_dropdown {
  179. background: #081653;
  180. margin-top: 0;
  181. }
  182. .nav_dropdown > div {
  183. position: absolute;
  184. background-color: #081653;
  185. width: 100%;
  186. z-index: 99999;
  187. margin-top: 32px;
  188. left: 0;
  189. }
  190. #nav_links > #links_menu {
  191. width: 120px;
  192. margin-left: -80px;
  193. }
  194. .nav_dropdown > div > a {
  195. display: none;
  196. color: #FFFFFF;
  197. height: 32px;
  198. line-height: 32px;
  199. }
  200. .nav_dropdown:hover > div > a {
  201. display: block;
  202. }
  203. #filter_menu {
  204. width: 100%;
  205. text-align: center;
  206. background-color: #081653;
  207. font-size: 10pt;
  208. }
  209. #filter_menu > ul {
  210. display: flex;
  211. width: 80%;
  212. margin: 0 auto;
  213. }
  214. #filter_menu > ul > li {
  215. position: relative;
  216. height: 26px;
  217. display: flex;
  218. margin: 0;
  219. flex: 1 1 auto;
  220. }
  221. #filter_menu ul > li > a {
  222. padding: 0.4em 0;
  223. display: inline-block;
  224. width: 100%;
  225. color: #FFFFFF;
  226. transition: ease-in-out 0.1s;
  227. }
  228. #filter_menu ul li a.active {
  229. background-color: #565656;
  230. }
  231. #filter_menu ul li a:hover {
  232. background-color: #0B2592;
  233. text-decoration: none;
  234. }
  235. #userinfo {
  236. /* position: absolute;
  237. top: 258px; */
  238. color: #e6e6e6;
  239. padding: 4px 0px;
  240. width: 100%;
  241. text-align: center;
  242. font-size: 8pt;
  243. /* border-bottom: 1px solid #999; */
  244. }
  245. #userinfo img {
  246. margin-top: -5px;
  247. }
  248. #userinfo ul {
  249. display: inline;
  250. margin: 0px 0.8%;
  251. }
  252. #userinfo ul li {
  253. display: inline;
  254. margin: 0 0.1em;
  255. line-height: 20px;
  256. vertical-align: middle;
  257. padding: 0px;
  258. }
  259. #userinfo a {
  260. color: #FFFFFF;
  261. }
  262. #userinfo a:hover {
  263. text-decoration: underline;
  264. }
  265. #userinfo b a {
  266. font-weight: normal;
  267. font-size: 0.9em;
  268. font-weight: bold;
  269. }
  270. #searchbars {
  271. text-align: center;
  272. box-sizing: border-box;
  273. display: flex;
  274. width: 60%;
  275. margin: 4px auto;
  276. min-width: 850px;
  277. }
  278. #searchbars > .search_form {
  279. flex: 1 1 auto;
  280. text-align: center;
  281. margin: 0 3px;
  282. }
  283. #searchbars input {
  284. position: relative;
  285. border: 1px solid transparent;
  286. box-sizing: border-box;
  287. padding: 2px 2px 2px 4px;
  288. font-size: 0.9em;
  289. background-color: #222f68;
  290. width: 100%;
  291. color: #c6c9c9;
  292. }
  293. #searchbars ul {
  294. margin: 0 auto;
  295. display: block;
  296. text-align: center;
  297. }
  298. #searchbars ul li {
  299. display: inline;
  300. margin: 0px 1px;
  301. list-style: none;
  302. position: relative;
  303. }
  304. #searchbars ul li ul {
  305. display: block;
  306. position: absolute;
  307. top: 1em;
  308. left: 0;
  309. z-index: 1000;
  310. background-color: #222f68;
  311. width: 12em;
  312. margin-top: 12px;
  313. }
  314. #searchbars ul li ul li {
  315. margin: 0 0 0 0;
  316. padding: 0;
  317. display: block;
  318. width: 100%;
  319. }
  320. #searchbars ul li ul li.highlight {
  321. background: #222f68;
  322. }
  323. #searchbars ul li form {
  324. display: inline;
  325. }
  326. #alerts {
  327. /* margin-top: 85px;
  328. margin-bottom: -85px; */
  329. /* padding: 10px 0px; */
  330. margin: 10px 0px;
  331. }
  332. #cat-selector ul {
  333. width: 100%;
  334. }
  335. #cat-selector ul li {
  336. display: inline;
  337. width: 12em;
  338. height: 1em;
  339. float: left;
  340. }
  341. .alertbar {
  342. /* border: 1px solid #999; */
  343. background-color: #0e238b;
  344. text-align: center;
  345. color: #c6c9c9;
  346. font-weight: bold;
  347. font-size: 0.95em;
  348. width: 350px;
  349. margin: 0 auto 0px auto;
  350. padding: 10px;
  351. }
  352. .alertbar a {
  353. color: white;
  354. text-decoration: underline;
  355. }
  356. .alertbar a:hover {
  357. text-decoration: none;
  358. }
  359. /* IE doesn't appear to like a simple display:none in our header. Random things start fucking up pretty badly. */
  360. .hidden {
  361. position: absolute;
  362. left: -10000px;
  363. }
  364. input.hidden {
  365. position: absolute;
  366. display: none;
  367. }
  368. /* Layout (Any page) */
  369. .thin {
  370. width: 850px;
  371. margin: 0px auto;
  372. }
  373. #userinfo_major .brackets:before {
  374. font-weight: bold;
  375. }
  376. #userinfo_major .brackets:after {
  377. font-weight: bold;
  378. }
  379. #userinfo #userinfo_minor {
  380. position: absolute;
  381. text-align: left;
  382. }
  383. #userinfo_minor > li > ul {
  384. display: none;
  385. position: absolute;
  386. padding: 5px;
  387. left: -5px;
  388. background-color: #0e238b;
  389. z-index: 100;
  390. }
  391. #userinfo_minor li {
  392. display: block;
  393. }
  394. div.linkbox {
  395. text-align:center;
  396. padding: 5px;
  397. }
  398. .center {
  399. text-align: center;
  400. }
  401. .right {
  402. text-align: right;
  403. }
  404. .min_padding {
  405. padding: 0px;
  406. margin: 0px 0px;
  407. }
  408. p.min_padding {
  409. margin: 2px 0px;
  410. }
  411. .pad {
  412. padding: 1em;
  413. }
  414. .slight_margin {
  415. margin: 4px;
  416. }
  417. .vertical_space {
  418. margin-bottom: 10px;
  419. }
  420. .box {
  421. font-size: 8pt;
  422. background-color: #222f68;
  423. /* border: 1px solid #666666; */
  424. border: none;
  425. margin-bottom: 10px;
  426. }
  427. .torrents_nomatch {
  428. margin-top: 10px;
  429. }
  430. .box2 {
  431. margin-bottom: 10px;
  432. font-size: 8pt;
  433. background-color: #222f68;
  434. /* border: 1px solid #666666; */
  435. border: none;
  436. }
  437. .pad h3, .pad h4, .padbox h3, .padbox h4 {
  438. margin-top: 0px;
  439. padding-top: 0px;
  440. color: white;
  441. }
  442. .sidebar {
  443. float: right;
  444. width: 245px;
  445. }
  446. .head {
  447. padding: 4px;
  448. /* border-bottom: 1px solid #666; */
  449. /* background: #E1E1E1; */
  450. background: #0B2593;
  451. color: #FFF;
  452. }
  453. .head a {
  454. text-decoration: none;
  455. border: none;
  456. color: #FFFFFF;
  457. }
  458. .head a:hover {
  459. text-decoration: underline;
  460. color: #FFFFFF;
  461. }
  462. .body {
  463. padding: 3px 10px 10px 10px;
  464. }
  465. .main_column {
  466. width: 592px;
  467. }
  468. .main_column table {
  469. margin-bottom: 10px;
  470. }
  471. /*
  472. These 3 #artist styles extend the width to ensure .sidebar does not steal width from .main_column
  473. and result in it only being 592px, which despite looking ok for the news items on the main page
  474. and other areas, it is just too thin for any torrent table.
  475. */
  476. #artist .main_column {
  477. width: 845px;
  478. }
  479. #artist .thin {
  480. width: 1100px;
  481. }
  482. body#artist {
  483. min-width: 1225px;
  484. }
  485. .tags {
  486. padding: 0px 0px 0px 20px;
  487. font-style: italic;
  488. }
  489. .tags a {
  490. color: white;
  491. }
  492. .tags a:hover {
  493. text-decoration: underline;
  494. }
  495. .noborder {
  496. border: none;
  497. }
  498. ul.nobullet, ul.nobullet li {
  499. list-style-type: none;
  500. }
  501. table {
  502. width: 100%;
  503. border-collapse: collapse;
  504. /* border: 1px solid #666666; */
  505. }
  506. tr {
  507. background-color: #222f68;
  508. }
  509. td, th {
  510. /* border: 1px solid #666666; */
  511. padding: 5px;
  512. text-align: left;
  513. }
  514. .colhead {
  515. background: #081654;
  516. font-weight: bold;
  517. color: #ffffff;
  518. }
  519. td.colhead, .colhead td, .colhead th {
  520. padding-left: 10px;
  521. padding-right: 10px;
  522. }
  523. .colhead a {
  524. text-decoration: none;
  525. border: none;
  526. color: #FFFFFF;
  527. }
  528. .colhead a:hover {
  529. text-decoration: underline;
  530. color: #FFFFFF;
  531. }
  532. .colhead .sign, .colhead_dark .sign {
  533. padding: 0px 8px 0px 8px;
  534. vertical-align: middle;
  535. text-align: center;
  536. font-size: 12pt;
  537. font-weight: bold;
  538. }
  539. .colhead .sign {
  540. padding: 0px 8px 0px 8px;
  541. font-size: 12pt;
  542. font-weight: bold;
  543. }
  544. .colhead_dark {
  545. background: #081654;
  546. color: #FFF;
  547. }
  548. .staff_post .colhead_dark {
  549. background: #4d73ff;
  550. }
  551. td.label {
  552. font-weight: bold;
  553. text-align: right;
  554. width: 180px;
  555. }
  556. .label_annotate {
  557. font-weight: normal;
  558. text-align: right;
  559. margin: 0px;
  560. }
  561. table.slice {
  562. margin-top: -1px;
  563. }
  564. .error_message {
  565. border: 1px solid #666;
  566. padding: 3px 0px 3px 0px;
  567. background-color: #AF2525;
  568. text-align: center;
  569. color: white;
  570. font-weight: bold;
  571. }
  572. .save_message {
  573. border: 1px solid #666;
  574. padding: 3px 0px 3px 0px;
  575. background-color: #F4E649;
  576. text-align: center;
  577. color: #492802;
  578. font-weight: bold;
  579. }
  580. .elem_error {
  581. border: 3px solid #B00D0D;
  582. }
  583. .hidden {
  584. display: none;
  585. }
  586. ul.nobullet {
  587. display: inline-block;
  588. }
  589. /* Layout (home page) */
  590. ul.stats li {
  591. padding: 0px 0px 1px 0px;
  592. }
  593. ul.poll li {
  594. padding: 0px 0px 0px 10px;
  595. margin: 0px;
  596. clear: left;
  597. }
  598. ul.poll li.graph {
  599. margin-bottom: 3px;
  600. padding-left: 20px;
  601. }
  602. /* Layout (Torrents page) */
  603. .show_torrents {
  604. width: 21px;
  605. height: 28px;
  606. background: url('images/show2.png') no-repeat center center;
  607. }
  608. .hide_torrents {
  609. width: 21px;
  610. height: 28px;
  611. background: url('images/hide2.png') no-repeat center center;
  612. }
  613. .show_torrents_link {
  614. border: none;
  615. width: 28px;
  616. height: 28px;
  617. display: block;
  618. cursor: pointer;
  619. }
  620. .filter_torrents {
  621. width: 750px;
  622. margin: auto;
  623. background: #222f68;
  624. }
  625. .filter_torrents .submit {
  626. text-align: right;
  627. padding-top: 5px;
  628. }
  629. .filter_torrents .ft_cat_list {
  630. border-top: 1px solid #222f68;
  631. border-bottom: 1px solid #222f68;
  632. }
  633. #content form.search_form + .torrent_table {
  634. margin-top: 20px;
  635. }
  636. #content form.search_form .submit {
  637. text-align: center;
  638. }
  639. .cat_list tr td {
  640. border: none;
  641. }
  642. .torrent_table tr {
  643. /* vertical-align: top; */
  644. vertical-align: middle;
  645. }
  646. h3 a {
  647. color: white;
  648. }
  649. .torrent_table .number_column {
  650. text-align: center;
  651. }
  652. .torrent_table, .torrent_table td {
  653. border: none;
  654. }
  655. .torrent_table tr.torrent, .torrent_table tr.group {
  656. font-weight: bold;
  657. }
  658. .torrent_table tr.group {
  659. background-color: #2b4297;
  660. }
  661. .torrent_table tr.group_torrent {
  662. background-color: #222f68;
  663. }
  664. .torrent_table tr.torrent {
  665. background-color: #222f68;
  666. }
  667. .torrent_table tr.group td.center:first-child {
  668. padding: 3px;
  669. width: 21px;
  670. }
  671. .torrent_table tr.torrent:nth-child(2n) {
  672. background-color: #07123c;
  673. }
  674. .torrent_table tr.torrent:nth-child(2n-1) {
  675. background-color: #293c80;
  676. }
  677. /*
  678. It is not possible to .addClass() nth-child so a new style must be created with
  679. the same css attributes as the nth-child lines above.
  680. Also defining an extra style class with nth-child also does not work so an extra
  681. css block is needed for .rowlight and .rowdark*/
  682. .torrent_table tr.torrent.rowlight {
  683. background-color: #07123c;
  684. }
  685. .torrent_table tr.torrent.rowdark {
  686. background-color: #293c80;
  687. }
  688. .torrent_table div.tags {
  689. font-weight: normal;
  690. max-width: 500px;
  691. }
  692. .torrent_table tr .center, #collage_table td {
  693. vertical-align: middle;
  694. text-align: center;
  695. }
  696. .group_torrent span {
  697. float: right;
  698. }
  699. .torrent span {
  700. font-weight: normal;
  701. float: right;
  702. }
  703. .nobr {
  704. white-space: nowrap;
  705. }
  706. /* Layout (Forums) */
  707. .last_read {margin-left: 5px; fill: #222f68;}
  708. .colhead_dark .last_read {fill: #4d73ff;}
  709. .unread_locked_sticky{background: url(images/locked_sticky_unread.png) no-repeat center center;}
  710. .read_locked_sticky{background: url(images/locked_sticky_read.png) no-repeat center center;}
  711. .read_sticky{background: url(images/sticky_read.png) no-repeat center center;}
  712. .unread_sticky{background: url(images/sticky_unread.png) no-repeat center center;}
  713. .unread_locked{background: url(images/locked_unread.png) no-repeat center center;}
  714. .read_locked{background: url(images/locked_read.png) no-repeat center center;}
  715. .unread{background: url(images/unread.png) no-repeat center center;}
  716. .read{background: url(images/read.png) no-repeat center center;}
  717. strong.quoteheader {color: #000;}
  718. tr.row:nth-of-type(odd) {
  719. background-color: #293c80;
  720. }
  721. table.forum_post {
  722. margin: 10px 0px;
  723. }
  724. table.forum_post td {
  725. /* border: 1px solid #666; */
  726. border: none;
  727. }
  728. table.forum_unread {
  729. border: 2px solid #335fff;
  730. }
  731. td.avatar {
  732. width: 150px;
  733. padding: 0px;
  734. }
  735. .box_description > div:not(.head) {
  736. max-height: 400px;
  737. overflow-y: scroll;
  738. }
  739. .box_description, table.forum_post td.body {
  740. word-break: break-word;
  741. word-wrap: break-word;
  742. display: inline-block;
  743. }
  744. .box_description {
  745. width: 100%;
  746. }
  747. .thin > table.forum_post td.body {
  748. width: 690px;
  749. }
  750. #torrent_comments table.forum_post td.body {
  751. width: 422px;
  752. }
  753. blockquote {
  754. margin: 10px;
  755. padding: 10px;
  756. /* border: 1px dashed #666; */
  757. border: 1px solid #BBB;
  758. }
  759. /* Layout (Inbox) */
  760. tr.unreadpm {
  761. background-color: #4d73ff;
  762. }
  763. /* Layout (Permission Page) */
  764. .permission_head {
  765. width: 400px;
  766. margin-left: auto;
  767. margin-right: auto;
  768. }
  769. .permissions {
  770. width: 930px;
  771. margin-left: auto;
  772. margin-right: auto;
  773. }
  774. .permission_container {
  775. float: left;
  776. width: 300px;
  777. padding: 5px;
  778. }
  779. .permission_container input {
  780. margin: 0px 3px 5px 0px;
  781. vertical-align: top;
  782. }
  783. .submit_container {
  784. clear: both;
  785. text-align: right;
  786. }
  787. /* Layout (Invite tree) */
  788. ul .invitetree {
  789. margin: 0px 0px 0px 25px;
  790. }
  791. .invitetree li {
  792. list-style: none;
  793. margin: 10px 2px;
  794. }
  795. /* Layout (User options) */
  796. .user_options .options_list li {
  797. margin: 0;
  798. }
  799. /* Layout (MISC) */
  800. .left_poll {
  801. display: none;
  802. width: 2px;
  803. height: 9px;
  804. float: left;
  805. margin: 0px;
  806. padding: 0px;
  807. }
  808. .center_poll {
  809. height: 9px;
  810. background: #C5D1FF;
  811. border-radius: 4px;
  812. float: left;
  813. margin: 0px;
  814. padding: 0px;
  815. }
  816. .right_poll {
  817. display: none;
  818. width: 2px;
  819. height: 9px;
  820. float: left;
  821. margin: 0px;
  822. padding: 0px;
  823. }
  824. .curtain {
  825. position: fixed;
  826. top: 0%;
  827. left: 0%;
  828. width: 100%;
  829. height: 100%;
  830. background-color: black;
  831. z-index: 1001;
  832. -moz-opacity: 0.8;
  833. opacity: .80;
  834. filter: alpha(opacity=80);
  835. }
  836. .lightbox {
  837. position: fixed;
  838. text-align: center;
  839. top: 5%;
  840. left: 5%;
  841. width: 90%;
  842. height: 90%;
  843. padding: 0px;
  844. z-index: 1002;
  845. overflow: auto;
  846. }
  847. .center {
  848. text-align: center;
  849. }
  850. .spellcheck {
  851. margin: 25px 0;
  852. font-size: 1.25em;
  853. font-weight: bold;
  854. }
  855. tr.torrent .bookmark > a:before {
  856. color: black;
  857. }
  858. tr.torrent .bookmark > a:after {
  859. color: black;
  860. }
  861. .field_div {
  862. margin-bottom: 10px;
  863. }
  864. .edit_changelog textarea {
  865. width: 600px;
  866. }
  867. .brackets {
  868. font-weight: normal;
  869. }
  870. div[class~=tooltipster-content] > a {
  871. color: #AAAAAA;
  872. }
  873. .post_id {
  874. font-weight: normal;
  875. margin-bottom: 5px; /* Hack to allow forum thread head column to look OK even if user has no displayed badges */
  876. }
  877. .vote_tag_up, .vote_artist_up, .vote_album_up, .small_upvote, .small_upvoted {
  878. color: green;
  879. }
  880. .vote_tag_down, .vote_artist_down, .vote_album_down, .small_downvote, .small_downvoted {
  881. color: red;
  882. }
  883. /* get rid of extraneous padding in the Top Contributors box */
  884. #request_top_contrib {
  885. border: none;
  886. }
  887. #request_top_contrib tr:first-child th {
  888. border-top: 0;
  889. }
  890. #request_top_contrib tr:last-child td {
  891. border-bottom: 0;
  892. }
  893. #request_top_contrib tr td:first-child,
  894. #request_top_contrib tr th:first-child,
  895. #request_top_contrib tr td:nth-child(2),
  896. #request_top_contrib tr th:nth-child(2) {
  897. border-left: 0;
  898. border-top: 0;
  899. }
  900. #request_top_contrib tr td:last-child,
  901. #request_top_contrib tr th:last-child {
  902. border-right: 0;
  903. }
  904. #requests table.layout.cat_list {
  905. border-bottom: 1px solid #AAA;
  906. border-top: 1px solid #AAA;
  907. }
  908. #requests tr#media_list {
  909. border-bottom: 1px solid #AAA;
  910. border-top: 1px solid #AAA;
  911. }
  912. #request_table {
  913. margin-bottom: 5px;
  914. }
  915. #request_table .request:nth-of-type(odd){
  916. background: #6687ff;
  917. }
  918. #request_table .request:nth-of-type(even){
  919. background: #335fff;
  920. }
  921. /* workaround for calendar display issue */
  922. div.sidebar #event_div {
  923. margin-left: -232px;
  924. }
  925. ol {
  926. margin-left: 1em;
  927. }
  928. #forum_search_cat_list {
  929. border: none;
  930. }
  931. #coverCont {
  932. background-color: #335fff;
  933. padding: 5px;
  934. box-shadow: 0 4px 5px 0 rgba(0,0,0,.14),0 1px 10px 0 rgba(0,0,0,.12),0 2px 4px -1px rgba(0,0,0,.2);
  935. }
  936. #coverCont img {
  937. background-color: #335fff;
  938. }
  939. .torrent_info {
  940. font-size: 100%;
  941. font-weight: 100;
  942. }
  943. .group_info > a:last-of-type {
  944. text-decoration: underline;
  945. }
  946. .group_image {
  947. padding-right: 1em;
  948. }
  949. .recent_snatches_images, .recent_uploads_images {
  950. position: relative;
  951. }
  952. .edit_tags_votes {
  953. padding-left: 5px;
  954. }
  955. .row_hl {
  956. background-color: #4d73ff;
  957. }
  958. input.inputtext {
  959. border: none;
  960. border-bottom: 1px solid #AAA;
  961. background-color: rgba(0, 0, 0, 0);
  962. font-size: 13px;
  963. outline: none;
  964. transition: ease-in-out 0.12s;
  965. }
  966. input.inputtext:focus {
  967. border-bottom: 1px solid #081654;
  968. }
  969. input, textarea {
  970. background-color: #081653;
  971. padding: 5px 5px;
  972. color: white;
  973. outline: none;
  974. border: none;
  975. }
  976. select {
  977. padding: 5px 5px;
  978. background-color: #081653;
  979. color: white;
  980. border-radius: 0px;
  981. outline: 0;
  982. -webkit-appearance: none;
  983. -moz-appearance: none;
  984. appearance: none;
  985. border: none;
  986. }
  987. .bbcode_bar {
  988. background: #081653;
  989. border-bottom: none;
  990. }
  991. .collage_images .collage_image {
  992. margin: 1px;
  993. width: 121px;
  994. display: inline-block;
  995. }
  996. .box, .border, .alertbar, .artist_table, .request_table, .forum_index, #userinfo_minor > li > ul, .permissions table {
  997. box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 3px 1px -2px rgba(0, 0, 0, 0.2), 0 1px 5px 0 rgba(0, 0, 0, 0.12);
  998. }
  999. #userinfo {
  1000. box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.14), 0 2px 1px -2px rgba(0, 0, 0, 0.2), 0 0px 5px 0 rgba(0, 0, 0, 0.12);
  1001. }
  1002. .last_edited {
  1003. font-size: 10px;
  1004. opacity: 0.7;
  1005. }
  1006. #comm_badge_tr .badge_icon, #user_badge_edit_tr .badge_icon {
  1007. margin-right: 1em;
  1008. margin-left: 2px;
  1009. }
  1010. .store_table .badge_icon {
  1011. display: inline-block;
  1012. }
  1013. .store_table .badge_icon img {
  1014. display: block;
  1015. margin-left: auto;
  1016. margin-right: auto;
  1017. }
  1018. .hnr-yes {
  1019. color: red;
  1020. }
  1021. .hnr-no {
  1022. color: green;
  1023. }
  1024. .webm {
  1025. max-width: 100%;
  1026. }
  1027. .point_gift_box p {
  1028. margin: 7px 2px 0px;
  1029. }
  1030. .point_gift_box input[type="text"], .point_gift_box textarea {
  1031. width: 100%;
  1032. box-sizing: border-box;
  1033. }
  1034. .dead {
  1035. opacity: 0.6;
  1036. }
  1037. .search_warning {
  1038. fill: #081654;
  1039. }
  1040. .tl_reported {
  1041. color: red;
  1042. }
  1043. .tl_snatched {
  1044. color: #C35C1C;
  1045. }
  1046. .tl_leeching {
  1047. color: #BD0D0D;
  1048. }
  1049. .tl_seeding {
  1050. color: #068206;
  1051. }
  1052. .tl_free {
  1053. color: gold;
  1054. }
  1055. caption {
  1056. border-bottom: 1px solid #BBB;
  1057. font-weight: bold;
  1058. }
  1059. #noty_bottomRight_layout_container li {
  1060. background-color:#0a133d !important;
  1061. color: #E9E9E9 !important;
  1062. border: none !important;
  1063. }
  1064. .noty_buttons {
  1065. background-color: #222f68 !important;
  1066. border-top: none !important;
  1067. }
  1068. .tag_parody {
  1069. color: #e08e00 !important;
  1070. }
  1071. .tag_character {
  1072. color: #099809 !important;
  1073. }
  1074. .tag_female {
  1075. color: #d51b8a !important;
  1076. }
  1077. .tag_male {
  1078. color: #0000ff !important;
  1079. }
  1080. .collage_image:hover {
  1081. box-shadow: 0px 0px 0px 3px #122CB5;
  1082. position: relative;
  1083. }