Frontend elements to SugoiMusic, including CSS and public/private headers.
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符
 
 
 

1263 行
20 KiB

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