Frontend elements to SugoiMusic, including CSS and public/private headers.
Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

style.css 18 KiB

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