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

postmod.scss 25KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405
  1. /*
  2. Postmodern: A mongrel stylesheet for What.CD, based on 'Zeal', a modification of the original 'Teal' by pellad.
  3. This design incorporates some code from the 'Customize Zeal' Greasemonkey script by OhmG. The background image is also sourced from that script.
  4. */
  5. /* Asset Location! */
  6. $images: "postmod/images/";
  7. /* Layout (Torrents page) */
  8. /* Global */
  9. @font-face {
  10. font-family: Akzidenz;
  11. src: url($images + "Akzidenz.otf");
  12. }
  13. @font-face {
  14. font-family: Officina;
  15. src: url($images + "Officina.otf");
  16. }
  17. @font-face {
  18. font-family: Corpid;
  19. src: url($images + "CorpidOffice.ttf");
  20. }
  21. @font-face {
  22. font-family: Avant;
  23. src: url($images + "Avant.otf");
  24. }
  25. * {
  26. padding: 0;
  27. margin: 0;
  28. }
  29. html {
  30. width: 100%;
  31. }
  32. body {
  33. background: #000 url($images + "wood.jpg") no-repeat fixed;
  34. font-family: Helvetica, Arial, sans-serif;
  35. font-size: 9pt;
  36. color: #eee;
  37. background-size: cover;
  38. }
  39. .forum_post pre {
  40. max-width: 660px;
  41. max-height: 500px;
  42. overflow: auto;
  43. }
  44. table tbody,
  45. .main_column,
  46. .sidebar,
  47. .box,
  48. .thin,
  49. .pad,
  50. #threadpoll,
  51. #poll {
  52. color: #444;
  53. }
  54. /* Common elements */
  55. a {
  56. text-decoration: none;
  57. border: none;
  58. color: #4fd1ff;
  59. }
  60. a img {
  61. border: 0;
  62. }
  63. table tbody a,
  64. .main_column a,
  65. .sidebar a,
  66. .box a {
  67. color: #0a84af;
  68. }
  69. table tbody a:hover,
  70. .main_column a:hover,
  71. .sidebar a:hover,
  72. .box a:hover {
  73. color: #0c9ccf;
  74. }
  75. #header a:hover,
  76. .linkbox a:hover {
  77. text-decoration: underline;
  78. }
  79. a[onclick]:focus {
  80. outline: 0;
  81. background: transparent;
  82. }
  83. a[onclick]:active {
  84. outline: 0;
  85. }
  86. a[onclick^="AddArtistField"]:focus,
  87. a[onclick^="AddArtistField"]:active {
  88. outline: 0;
  89. background: transparent !important;
  90. padding: 0 !important;
  91. }
  92. /* 2021-01-16
  93. .main_column a[href^="http"],
  94. .main_column a[href^="https"] {
  95. padding: 0 10px 0 0;
  96. background: url(images/external.png) 100% 4px no-repeat;
  97. }
  98. */
  99. /* 2021-01-16
  100. .main_column a[href^="http"]:hover,
  101. .main_column a[href^="https"]:hover {
  102. padding: 0 10px 0 0;
  103. background: url(images/external.png) 100% 4px no-repeat !important;
  104. }
  105. */
  106. /* 2021-01-16
  107. .forum_post a[href^="http"],
  108. .forum_post a[href^="https"] {
  109. padding: 0 10px 0 0;
  110. background: url(images/external.png) 100% 4px no-repeat;
  111. }
  112. */
  113. /* 2021-01-16
  114. .forum_post a[href^="http"]:hover,
  115. .forum_post a[href^="https"]:hover {
  116. padding: 0 10px 0 0;
  117. background: url(images/external.png) 100% 4px no-repeat;
  118. }
  119. */
  120. /* 2021-01-16
  121. .head a[href^="http"]:hover,
  122. .head a[href^="https"]:hover,
  123. .colhead a[href^="http"]:hover,
  124. .colhead a[href^="https"]:hover,
  125. .colhead_dark a[href^="http"]:hover,
  126. .colhead_dark a[href^="https"]:hover {
  127. padding: 0 10px 0 0;
  128. background: url(images/external.png) 100% 4px no-repeat;
  129. }
  130. */
  131. /* 2021-01-16
  132. .forum_post a[href^="http"] img,
  133. .forum_post a[href^="https"] img {
  134. padding: 0 0 0 0;
  135. background: transparent !important;
  136. border: none;
  137. }
  138. */
  139. /* 2021-01-16
  140. .forum_post a[href^="http"] img:hover,
  141. .forum_post a[href^="https"] img:hover {
  142. padding: 0 0 0 0;
  143. background: transparent !important;
  144. border: none;
  145. }
  146. */
  147. h1,
  148. h2,
  149. h3 {
  150. margin: 5px 0px;
  151. color: #dfdfdf;
  152. font-family: Akzidenz, sans-serif;
  153. }
  154. h1 a:hover,
  155. h2 a:hover,
  156. h3 a:hover {
  157. text-decoration: underline;
  158. }
  159. .box h1,
  160. .box h2,
  161. .box h3,
  162. .box h4 .box2 h1,
  163. .box2 h2,
  164. .box2 h3,
  165. .box2 h4 {
  166. color: #000;
  167. }
  168. .size3,
  169. .size4,
  170. .size5,
  171. .size6,
  172. .size7 {
  173. font-family: Akzidenz, sans-serif;
  174. }
  175. li {
  176. margin: 5px 15px;
  177. }
  178. input {
  179. padding: 2px 3px;
  180. }
  181. textarea {
  182. padding: 2px 3px;
  183. }
  184. img {
  185. border: none;
  186. }
  187. /* Styles generated by the BBCode parser */
  188. span.size1 {
  189. font-size: 0.75em;
  190. }
  191. span.size2 {
  192. font-size: 1em;
  193. }
  194. span.size3 {
  195. font-size: 1.25em;
  196. }
  197. span.size4 {
  198. font-size: 1.5em;
  199. }
  200. span.size5 {
  201. font-size: 1.75em;
  202. }
  203. span.size6 {
  204. font-size: 2em;
  205. }
  206. span.size7 {
  207. font-size: 2.25em;
  208. }
  209. span.size8 {
  210. font-size: 2.5em;
  211. }
  212. span.size9 {
  213. font-size: 2.75em;
  214. }
  215. span.size10 {
  216. font-size: 3em;
  217. }
  218. ul.thin {
  219. margin: 0px 0px 0px 25px;
  220. padding: 0px;
  221. }
  222. ul.thin li {
  223. margin: 0px 0px;
  224. padding: 0px;
  225. }
  226. /* Layout (Every page) */
  227. #wrapper {
  228. padding: 0 0 0 0;
  229. }
  230. #header {
  231. width: 950px;
  232. margin: 0 auto 0 auto;
  233. height: 173px;
  234. padding: 0 0 0 0;
  235. }
  236. #content {
  237. width: 906px;
  238. margin: 0 auto 0 auto;
  239. border: 1px solid #222;
  240. color: #dfdfdf;
  241. background: transparent url($images + "content.png");
  242. padding: 40px 22px;
  243. overflow: hidden;
  244. }
  245. /* 2021-01-16
  246. #alerts {
  247. background: transparent url($images + "content.png");
  248. padding: 4px 9px;
  249. margin: -19px auto 0 auto;
  250. -moz-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
  251. -webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
  252. }
  253. */
  254. #footer {
  255. background: transparent url($images + "bg_footer.png");
  256. margin-top: 40px;
  257. width: 100%;
  258. text-align: center;
  259. padding: 1em 0;
  260. color: #ccc;
  261. font-size: 8pt;
  262. }
  263. #footer:after {
  264. content: url($images + "gazelle.png");
  265. }
  266. #disclaimer_container {
  267. font-size: 7pt;
  268. color: #ccc;
  269. }
  270. /* 2021-01-16
  271. #logo {
  272. width: 193px;
  273. height: 39px;
  274. background: url("data:image/png;base64,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")
  275. no-repeat top left;
  276. margin: 23px 0 0 11px;
  277. position: absolute;
  278. z-index: 2;
  279. }
  280. */
  281. /* 2021-01-16
  282. #logo a {
  283. border: none;
  284. width: 193px;
  285. height: 39px;
  286. display: block;
  287. }
  288. */
  289. #header a:active,
  290. #header a:focus,
  291. #logo a:hover,
  292. #logo a:active,
  293. logo a:focus {
  294. border: none;
  295. outline: none;
  296. }
  297. /* 2021-01-16
  298. #menu {
  299. height: 38px;
  300. position: absolute;
  301. padding: 0 0 0 0;
  302. margin: 30px 0 0 340px;
  303. font-family: Helvetica, Arial, sans-serif;
  304. font-size: 11pt;
  305. min-width: 595px;
  306. }
  307. */
  308. #menu a {
  309. color: #fff;
  310. text-decoration: none;
  311. }
  312. #menu ul {
  313. margin: 0;
  314. padding: 0;
  315. list-style: none;
  316. }
  317. #menu ul li {
  318. float: left;
  319. margin: 5px 8px;
  320. display: block;
  321. }
  322. #menu ul li a {
  323. font-family: Akzidenz, sans-serif;
  324. font-size: 11pt;
  325. outline: none;
  326. padding: 0 0 2px 0;
  327. }
  328. #menu ul li a:hover {
  329. border-bottom: 3px solid #efb34a;
  330. text-decoration: none;
  331. }
  332. #menu ul li a:active,
  333. #menu ul li a:focus {
  334. border-bottom: 3px solid #efa82c;
  335. }
  336. #index #nav_index a,
  337. #torrents #nav_torrents a,
  338. #collage #nav_collages a,
  339. #requests #nav_requests a,
  340. #forums #nav_forums a,
  341. #chat #nav_irc a,
  342. #top10 #nav_top10 a,
  343. #rules #nav_rules a,
  344. #wiki #nav_wiki a,
  345. #staff #nav_staff a {
  346. border-bottom: 4px solid #111;
  347. }
  348. /* 2021-01-16
  349. #userinfo {
  350. position: absolute;
  351. color: #fff;
  352. width: 950px;
  353. font-size: 8pt;
  354. }
  355. */
  356. /* 2021-01-16
  357. #userinfo_major {
  358. position: absolute;
  359. width: 609px;
  360. margin: 110px 0 0 326px;
  361. text-align: right;
  362. }
  363. */
  364. /* 2021-01-16
  365. #userinfo_username {
  366. position: absolute;
  367. margin: 94px 0 0 11px;
  368. }
  369. */
  370. /* 2021-01-16
  371. #userinfo_stats {
  372. margin: 74px 0 0 11px;
  373. position: absolute;
  374. }
  375. */
  376. /* 2021-01-16
  377. #userinfo_stats a {
  378. }
  379. */
  380. #userinfo_stats li span {
  381. color: #fff;
  382. }
  383. #userinfo_minor {
  384. position: absolute;
  385. width: 295px;
  386. margin: 70px 0 0 640px;
  387. text-align: right;
  388. float: right;
  389. }
  390. #userinfo_minor li a {
  391. color: #fff;
  392. }
  393. #userinfo img {
  394. margin-top: -5px;
  395. }
  396. #userinfo ul {
  397. }
  398. #userinfo ul li {
  399. display: inline;
  400. margin: 0 0.1em;
  401. line-height: 20px;
  402. vertical-align: middle;
  403. padding: 0px;
  404. }
  405. #userinfo a,
  406. #alerts a {
  407. color: #fff;
  408. }
  409. #userinfo b a {
  410. font-weight: normal;
  411. font-size: 0.9em;
  412. }
  413. /* 2021-01-16
  414. #searchbars {
  415. position: absolute;
  416. top: 132px;
  417. width: 912px;
  418. margin: 0 0 0 17px;
  419. }
  420. */
  421. #searchbars input {
  422. /* width: 130px; */
  423. border: 1px solid #fff;
  424. padding: 0 2px 0 10px;
  425. font-family: Helvetica, Arial, sans-serif;
  426. height: 22px;
  427. background: url($images + "content_light.png") transparent;
  428. color: #fff;
  429. -moz-border-radius: 2px;
  430. -webkit-border-radius: 2px;
  431. -moz-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
  432. -webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
  433. }
  434. #autocomplete {
  435. background: url($images + "content.png");
  436. border: 1px solid #eee;
  437. list-style: none;
  438. }
  439. #searchbars input:active,
  440. #searchbars input:focus {
  441. background: url($images + "content.png");
  442. border: 1px solid #eee;
  443. }
  444. #searchbars ul {
  445. margin: 0;
  446. padding: 0;
  447. list-style: none;
  448. display: block;
  449. }
  450. #searchbars ul li {
  451. display: inline;
  452. float: left;
  453. width: 148px;
  454. margin: 0;
  455. padding-left: 4px;
  456. position: relative;
  457. list-style: none;
  458. }
  459. #searchbars ul li ul {
  460. display: block;
  461. position: absolute;
  462. top: 1em;
  463. left: 0;
  464. z-index: 1000;
  465. border: 1px solid #eee;
  466. background: url($images + "content.png");
  467. width: 12em;
  468. margin-top: 12px;
  469. }
  470. #searchbars ul li ul li {
  471. margin: 1px 0 1px 4px;
  472. padding: 0;
  473. display: block;
  474. width: 100%;
  475. cursor: pointer;
  476. }
  477. #searchbars ul li ul li.highlight {
  478. color: #4fd1ff;
  479. }
  480. #searchbars ul li form {
  481. display: inline;
  482. margin: 0;
  483. }
  484. /* 2021-01-16
  485. #alerts {
  486. width: 230px;
  487. margin: 75px 0px 0px 338px;
  488. position: absolute;
  489. text-align: center;
  490. color: #fff;
  491. }
  492. */
  493. #cat-selector ul {
  494. width: 100%;
  495. }
  496. #cat-selector ul li {
  497. display: inline;
  498. width: 12em;
  499. height: 1em;
  500. float: left;
  501. }
  502. #debug_report pre {
  503. width: 890px;
  504. overflow: auto;
  505. }
  506. /* Strip the category column */
  507. td.cats_col,
  508. td.center.cats_col {
  509. border-right: none;
  510. }
  511. table.grouping > tbody > tr.torrent > td:first-child + td + td,
  512. table.no_grouping > tbody > tr.torrent > td:first-child + td,
  513. table.grouping > tbody > tr.group > td:first-child + td + td,
  514. table.grouping > tbody > tr.colhead > td:first-child + td + td,
  515. table.no_grouping > tbody > tr.group > td:first-child + td,
  516. table.no_grouping > tbody > tr.colhead > td:first-child + td {
  517. /*text-indent:-20px;*/
  518. border-left: none;
  519. }
  520. .last_read {
  521. width: 15px;
  522. height: 15px;
  523. background: url($images + "go_last_read.png") no-repeat center center;
  524. margin-left: 5px;
  525. }
  526. .last_read a {
  527. border: none;
  528. width: 100%;
  529. height: 100%;
  530. display: block;
  531. }
  532. .last_read a:hover {
  533. border: none;
  534. }
  535. .last_read a:active,
  536. .last_read a:focus {
  537. outline: 0;
  538. }
  539. .hidden {
  540. position: absolute;
  541. left: -10000px;
  542. }
  543. input.hidden {
  544. position: absolute;
  545. display: none;
  546. }
  547. /* Layout (Any page) */
  548. .thin {
  549. width: 850px;
  550. margin: 0px auto;
  551. color: #dfdfdf;
  552. }
  553. .linkbox {
  554. text-align: center;
  555. padding: 5px;
  556. color: #fcfcfc;
  557. }
  558. .center {
  559. text-align: center;
  560. }
  561. .right {
  562. text-align: right;
  563. }
  564. .min_padding {
  565. padding: 0px;
  566. margin: 0px 0px;
  567. }
  568. p.min_padding {
  569. margin: 2px 0px;
  570. }
  571. .pad {
  572. padding: 1em;
  573. }
  574. .sidebar .pad {
  575. padding: 10px;
  576. }
  577. .vertical_space {
  578. margin-bottom: 10px;
  579. }
  580. .box {
  581. font-size: 10pt;
  582. background-color: #f7f6f2;
  583. margin-bottom: 10px;
  584. }
  585. .box2 {
  586. font-size: 10pt;
  587. background-color: #f7f6f2;
  588. margin-bottom: 10px;
  589. }
  590. .pad h3,
  591. .pad h4,
  592. .padbox h3,
  593. .padbox h4 {
  594. margin-top: 0px;
  595. padding-top: 0px;
  596. }
  597. .sidebar {
  598. float: right;
  599. width: 245px;
  600. }
  601. .body {
  602. padding: 3px 10px 10px 10px;
  603. }
  604. .main_column {
  605. width: 592px;
  606. }
  607. .main_column table {
  608. margin-bottom: 10px;
  609. }
  610. .main_column .box .body {
  611. font-size: 8pt;
  612. }
  613. .tags {
  614. padding: 0px 0px 0px 20px;
  615. font-style: italic;
  616. }
  617. .tags a {
  618. color: #8d957e;
  619. }
  620. .tags a:hover {
  621. color: #444;
  622. }
  623. .noborder {
  624. border: none;
  625. }
  626. ul.nobullet {
  627. list-style-type: none;
  628. }
  629. #user .box2 .nobullet a {
  630. font-size: 16px;
  631. }
  632. table {
  633. width: 100%;
  634. border-collapse: collapse;
  635. border: none;
  636. -moz-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.6);
  637. -webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.6);
  638. }
  639. tr {
  640. border: none;
  641. background-color: #fbfaf8;
  642. }
  643. tr.rowa {
  644. background-color: #f0f0f0;
  645. }
  646. tr.rowb {
  647. background-color: #ffffff;
  648. }
  649. td,
  650. th {
  651. border: none;
  652. padding: 5px;
  653. text-align: left;
  654. }
  655. .colhead,
  656. .colhead_dark,
  657. .head {
  658. padding: 4px;
  659. background: #000 url($images + "table_header_dark.png") repeat-x;
  660. border-bottom: 1px solid #000;
  661. color: #fbfcfd;
  662. }
  663. .colhead a,
  664. .colhead_dark a,
  665. .head a {
  666. color: #fbfcfd;
  667. }
  668. .colhead_dark a img:active,
  669. .colhead_dark a img:focus {
  670. outline: 0;
  671. }
  672. td.colhead,
  673. .colhead td,
  674. .colhead th {
  675. padding-left: 10px;
  676. padding-right: 10px;
  677. }
  678. .colhead .sign,
  679. .colhead_dark .sign {
  680. padding: 0px 8px 0px 8px;
  681. vertical-align: middle;
  682. text-align: center;
  683. font-size: 12pt;
  684. }
  685. td.label {
  686. text-align: right;
  687. width: 180px;
  688. }
  689. #upload form table td.label {
  690. vertical-align: top;
  691. padding-top: 15px;
  692. }
  693. table.slice {
  694. margin-top: -1px;
  695. }
  696. tr.peer_list {
  697. font-size: 8pt;
  698. }
  699. tr.peer_list td {
  700. padding: 2px 0px 2px 2px;
  701. }
  702. .error_message {
  703. border: 1px solid #666;
  704. padding: 3px 0px 3px 0px;
  705. background-color: #af2525;
  706. text-align: center;
  707. color: white;
  708. }
  709. .save_message {
  710. border: 1px solid #666;
  711. padding: 3px 0px 3px 0px;
  712. background-color: #f4e649;
  713. text-align: center;
  714. color: #492802;
  715. }
  716. .elem_error {
  717. border: 3px solid #b00d0d;
  718. }
  719. .hide {
  720. display: none;
  721. }
  722. /* Layout (home page) */
  723. ul.stats li {
  724. padding: 0px 0px 1px 0px;
  725. font-size: 8pt;
  726. }
  727. ul.poll li {
  728. padding: 0px 0px 0px 10px;
  729. margin: 0px;
  730. clear: left;
  731. }
  732. ul.poll li.graph {
  733. margin-bottom: 3px;
  734. padding-left: 20px;
  735. }
  736. /* Layout (Torrents page) */
  737. .show_torrents {
  738. width: 28px;
  739. height: 28px;
  740. background: url($images + "show.png") no-repeat center center;
  741. -moz-opacity: 0.5;
  742. opacity: 0.5;
  743. filter: alpha(opacity=50);
  744. }
  745. .hide_torrents {
  746. width: 28px;
  747. height: 28px;
  748. background: url($images + "hide.png") no-repeat center center;
  749. -moz-opacity: 0.5;
  750. opacity: 0.5;
  751. filter: alpha(opacity=50);
  752. }
  753. .show_torrents_link {
  754. border: none;
  755. width: 28px;
  756. height: 28px;
  757. display: block;
  758. }
  759. .torrent_table a:active img,
  760. .torrent_table a:focus img {
  761. background-color: transparent !important;
  762. }
  763. .filter_torrents {
  764. width: 750px;
  765. margin: auto;
  766. }
  767. .filter_torrents .submit {
  768. text-align: right;
  769. padding-top: 5px;
  770. }
  771. #content form.search_form + .torrent_table {
  772. margin-top: 20px;
  773. }
  774. .cat_list tr td {
  775. border: none;
  776. }
  777. .torrent_table tr {
  778. vertical-align: top;
  779. }
  780. .torrent_table tr.group {
  781. background-color: #efefef;
  782. }
  783. .torrent_table tr.group_torrent {
  784. background-color: #fbfaf8;
  785. border-bottom: 1px solid #efefef;
  786. }
  787. tr.group_torrent td,
  788. tr.group td,
  789. tr.torrent td {
  790. color: #646054;
  791. }
  792. .torrent_table.grouping tr.torrent,
  793. .torrent_table.no_grouping tr.torrent {
  794. background-color: #efefef;
  795. }
  796. .torrent_table div.tags {
  797. font-weight: normal;
  798. }
  799. .torrent_table tr .center {
  800. vertical-align: middle;
  801. text-align: center;
  802. }
  803. .group_torrent span {
  804. float: right;
  805. }
  806. .torrent span {
  807. font-weight: normal;
  808. float: right;
  809. }
  810. .nobr {
  811. white-space: nowrap;
  812. }
  813. /* Layout (Forums) */
  814. .unread_locked_sticky {
  815. background: url($images + "locked_sticky_unread.png") no-repeat center center;
  816. }
  817. .read_locked_sticky {
  818. background: url($images + "locked_sticky_read.png") no-repeat center center;
  819. }
  820. .read_sticky {
  821. background: url($images + "sticky_read.png") no-repeat center center;
  822. }
  823. .unread_sticky {
  824. background: url($images + "sticky_unread.png") no-repeat center center;
  825. }
  826. .unread_locked {
  827. background: url($images + "locked_unread.png") no-repeat center center;
  828. }
  829. .read_locked {
  830. background: url($images + "locked_read.png") no-repeat center center;
  831. }
  832. .unread {
  833. background: url($images + "unread.png") no-repeat center center;
  834. }
  835. .read {
  836. background: url($images + "read.png") no-repeat center center;
  837. }
  838. table.forum_post {
  839. margin: 10px 0px;
  840. }
  841. table.forum_post td {
  842. border: 1px solid #666;
  843. }
  844. table.forum_unread {
  845. border: 2px solid #ea5600;
  846. }
  847. td.avatar {
  848. width: 150px;
  849. padding: 0px;
  850. }
  851. table.forum_post td.body {
  852. width: 690px;
  853. }
  854. #quickreplypreview .forum_post {
  855. padding: 5px;
  856. }
  857. strong.quoteheader {
  858. color: #444;
  859. }
  860. blockquote {
  861. margin: 10px;
  862. padding: 10px;
  863. border: 1px dashed #666;
  864. background: #ececec;
  865. }
  866. /* Layout (Inbox) */
  867. tr.unreadpm {
  868. background-color: #e0ebef;
  869. }
  870. /* Layout (collages) */
  871. .collage_images li {
  872. background-color: #f7f6f2;
  873. vertical-align: middle;
  874. }
  875. /* Layout (Permission Page) */
  876. .permission_head {
  877. width: 400px;
  878. margin-left: auto;
  879. margin-right: auto;
  880. }
  881. .permissions {
  882. width: 930px;
  883. margin-left: auto;
  884. margin-right: auto;
  885. }
  886. .permission_container {
  887. float: left;
  888. width: 300px;
  889. padding: 5px;
  890. }
  891. .permission_container input {
  892. margin: 0px 3px 5px 0px;
  893. vertical-align: top;
  894. }
  895. .submit_container {
  896. clear: both;
  897. text-align: right;
  898. }
  899. .toolbox_container {
  900. float: left;
  901. padding: 5px;
  902. width: 200px;
  903. }
  904. /* Layout (Invite tree) */
  905. ul .invitetree {
  906. margin: 0px 0px 0px 25px;
  907. }
  908. .invitetree li {
  909. list-style: none;
  910. margin: 10px 2px;
  911. }
  912. .head a:hover,
  913. .colhead a:hover,
  914. .colhead_dark a:hover,
  915. .head a:focus,
  916. .colhead a:focus,
  917. .colhead_dark a:focus {
  918. background: transparent !important;
  919. outline: 0;
  920. }
  921. /* Layout (User options) */
  922. .user_options .options_list li {
  923. margin: 0;
  924. }
  925. /* Layout (MISC) */
  926. .poll {
  927. list-style: none;
  928. padding: 10px;
  929. margin: 5px;
  930. }
  931. .poll li {
  932. clear: both;
  933. }
  934. .poll .graph {
  935. padding: 0 0 15px 0;
  936. }
  937. .poll .graph span {
  938. display: block;
  939. height: 19px;
  940. float: left;
  941. }
  942. .poll .graph .left_poll {
  943. width: 9px;
  944. background: url($images + "poll_left.png") top left no-repeat;
  945. }
  946. .poll .graph .center_poll {
  947. background: url($images + "poll_middle.png") top left repeat-x;
  948. max-width: 730px;
  949. }
  950. #index .poll .graph .center_poll {
  951. max-width: 135px;
  952. }
  953. .poll .graph .right_poll {
  954. width: 11px;
  955. background: url($images + "poll_right.png") top left no-repeat;
  956. }
  957. .curtain {
  958. position: fixed;
  959. top: 0;
  960. left: 0;
  961. width: 100%;
  962. height: 100%;
  963. background: #111 50% 0 no-repeat fixed;
  964. z-index: 1001;
  965. -moz-opacity: 0.9;
  966. opacity: 0.9;
  967. filter: alpha(opacity=90);
  968. }
  969. .lightbox {
  970. position: fixed;
  971. text-align: center;
  972. top: 5%;
  973. left: 5%;
  974. width: 90%;
  975. height: 90%;
  976. padding: 0px;
  977. z-index: 1002;
  978. overflow: auto;
  979. }
  980. .lightbox img {
  981. max-width: 100%;
  982. max-height: 100%;
  983. background-color: transparent;
  984. z-index: -1;
  985. }
  986. input[type="button"],
  987. input[type="submit"] {
  988. background: #111 url(images/alert-overlay.png) repeat-x;
  989. display: inline-block;
  990. padding: 3px 6px 4px;
  991. margin: 3px;
  992. color: #fff;
  993. text-decoration: none;
  994. -moz-border-radius: 2px;
  995. -webkit-border-radius: 2px;
  996. -moz-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
  997. -webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
  998. border-left: 0;
  999. border-top: 0;
  1000. border-right: 0;
  1001. border-bottom: 1px solid rgba(0, 0, 0, 0.25);
  1002. cursor: pointer;
  1003. }
  1004. input[type="button"]:hover,
  1005. input[type="submit"]:hover {
  1006. background-color: #000;
  1007. color: #fff;
  1008. }
  1009. input[type="button"]:active,
  1010. input[type="submit"]:active {
  1011. top: 1px;
  1012. }
  1013. input[type="button"]:active,
  1014. input[type="button"]:focus,
  1015. input[type="submit"]:active,
  1016. input[type="submit"]:focus {
  1017. display: inline-block;
  1018. padding: 3px 6px 4px;
  1019. margin: 3px;
  1020. color: #fff;
  1021. text-decoration: none;
  1022. -moz-border-radius: 2px;
  1023. -webkit-border-radius: 2px;
  1024. -moz-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
  1025. -webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
  1026. border-left: 0;
  1027. border-top: 0;
  1028. border-right: 0;
  1029. border-bottom: 1px solid rgba(0, 0, 0, 0.25);
  1030. cursor: pointer;
  1031. }
  1032. input[type="text"],
  1033. input[type="email"],
  1034. input[type="password"],
  1035. input[type="search"] {
  1036. background: #111 url(images/alert-overlay.png) repeat-x;
  1037. display: inline-block;
  1038. padding: 3px;
  1039. margin: 3px;
  1040. color: #fff;
  1041. text-decoration: none;
  1042. border-top: 1px solid #777;
  1043. border-left: 1px solid #777;
  1044. border-right: 1px solid #333;
  1045. border-bottom: 1px solid #333;
  1046. }
  1047. input[type="text"]:hover,
  1048. input[type="text"]:focus,
  1049. input[type="email"]:hover,
  1050. input[type="email"]:focus,
  1051. input[type="search"]:hover,
  1052. input[type="search"]:focus,
  1053. input[type="password"]:hover,
  1054. input[type="password"]:focus {
  1055. background-color: #000;
  1056. color: #fff;
  1057. }
  1058. input[type="text"]:active,
  1059. input[type="email"]:active,
  1060. input[type="search"]:active,
  1061. input[type="password"]:active {
  1062. top: 1px;
  1063. }
  1064. input[disabled="disabled"] {
  1065. background: #4f4f4f url(images/alert-overlay.png) repeat-x;
  1066. color: #dfdfdf;
  1067. }
  1068. input[disabled="disabled"]:hover,
  1069. input[disabled="disabled"]:focus,
  1070. input[disabled="disabled"]:active {
  1071. background-color: #4f4f4f;
  1072. color: #dfdfdf;
  1073. }
  1074. select[disabled="disabled"] {
  1075. background: #4f4f4f;
  1076. color: #dfdfdf;
  1077. }
  1078. select[disabled="disabled"]:hover,
  1079. select[disabled="disabled"]:focus,
  1080. select[disabled="disabled"]:active {
  1081. background-color: #4f4f4f;
  1082. color: #dfdfdf;
  1083. }
  1084. select,
  1085. select:active,
  1086. select:focus {
  1087. background: #111 /*url(images/alert-overlay.png)*/ repeat-x;
  1088. display: inline-block;
  1089. margin: 3px;
  1090. color: #fff;
  1091. text-decoration: none;
  1092. border: 0;
  1093. font-family: Helvetica, Arial, sans-serif;
  1094. }
  1095. option,
  1096. option:active,
  1097. option:focus {
  1098. background: #111;
  1099. padding: 1px;
  1100. margin: 0;
  1101. color: #fff;
  1102. text-decoration: none;
  1103. border: 0;
  1104. font-family: Helvetica, Arial, sans-serif;
  1105. }
  1106. select:hover,
  1107. option:hover {
  1108. background: #3f3f3f;
  1109. }
  1110. #logchecker .thin,
  1111. #logchecker h3,
  1112. .log_outer,
  1113. .log_outer h3 {
  1114. color: #444;
  1115. }
  1116. .spellcheck {
  1117. margin: 10px 0;
  1118. font-size: 1.25em;
  1119. font-weight: bold;
  1120. }
  1121. ul,
  1122. ol {
  1123. list-style-position: inside;
  1124. }
  1125. tr.torrent .bookmark > a:before {
  1126. color: #646054;
  1127. }
  1128. tr.torrent .bookmark > a:after {
  1129. color: #646054;
  1130. }
  1131. #requests .forum_post textarea {
  1132. /* overriding the inline 80-character monospace */
  1133. max-width: 409px;
  1134. }
  1135. .linkbox .brackets:before,
  1136. .linkbox .brackets:after,
  1137. .top10_quantity_links .brackets:before,
  1138. .top10_quantity_links .brackets:after {
  1139. color: #fcfcfc;
  1140. }
  1141. #userinfo_username .brackets:before {
  1142. content: "[";
  1143. }
  1144. #userinfo_username .brackets:after {
  1145. content: "]";
  1146. }
  1147. .field_div {
  1148. margin-bottom: 10px;
  1149. }
  1150. .edit_changelog textarea {
  1151. width: 600px;
  1152. }
  1153. .autocomplete-suggestions {
  1154. background: #111;
  1155. }
  1156. .autocomplete-selected {
  1157. background: #444;
  1158. }
  1159. div[class~="tooltipster-base"] {
  1160. background-color: #ececec;
  1161. color: #444;
  1162. }
  1163. div[class~="tooltipster-content"] > a {
  1164. color: #0a84af;
  1165. }
  1166. #settings_sections #submit,
  1167. #settings_sections #settings_search {
  1168. margin: 3px 0;
  1169. }
  1170. .vote_tag_up,
  1171. .vote_artist_up,
  1172. .vote_album_up,
  1173. .small_upvote,
  1174. .small_upvoted {
  1175. color: green;
  1176. }
  1177. .vote_tag_down,
  1178. .vote_artist_down,
  1179. .vote_album_down,
  1180. .small_downvote,
  1181. .small_downvoted {
  1182. color: red;
  1183. }
  1184. /* workaround for calendar display issue */
  1185. div.sidebar #event_div {
  1186. margin-left: -50px;
  1187. }
  1188. .sidebar img {
  1189. max-width: 225px;
  1190. }
  1191. .news_post img,
  1192. .wiki_article img {
  1193. max-width: 565px;
  1194. }
  1195. #reportsv2 .manage_form img {
  1196. max-width: 622px;
  1197. }
  1198. input[type="search"] {
  1199. font-size: 13px;
  1200. }