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

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