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.

style.css 13KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927
  1. /* Layout (Torrents page) */
  2. /* We're going to opt for the category icon method for now, tags_* is also available */
  3. .cats_dna { width: 36px; height: 36px; background: url('/static/common/caticons/dna.png') no-repeat center center; }
  4. .cats_rna { width: 36px; height: 36px; background: url('/static/common/caticons/rna.png') no-repeat center center; }
  5. .cats_protein { width: 36px; height: 36px; background: url('/static/common/caticons/protein.png') no-repeat center center; }
  6. .cats_other { width: 36px; height: 36px; background: url('/static/common/caticons/other.png') no-repeat center center; }
  7. /* Global */
  8. * {
  9. padding: 0em;
  10. margin: 0em;
  11. }
  12. html {
  13. width: 100%;
  14. }
  15. body {
  16. width: 100%;
  17. font-family: tahoma,helvetica,sans-serif;
  18. font-size: 8pt;
  19. color: #999;
  20. min-width: 850px;
  21. background-color: #222;
  22. }
  23. /* Common elements */
  24. a {
  25. text-decoration: none;
  26. border: none;
  27. color: #ccc;
  28. }
  29. a:hover {
  30. text-decoration: underline;
  31. color: #aaaaaa;
  32. }
  33. a.similar_artist {
  34. background-color: #444444;
  35. display: block;
  36. padding: 1px 4px;
  37. color: #FFF;
  38. border: 1px solid #fff;
  39. }
  40. a.similar_artist:hover {
  41. background-color: #555;
  42. }
  43. .similar_artist_header {
  44. color: #FFF;
  45. background-color: #666;
  46. border: 1px solid #fff;
  47. padding: 3px 5px;
  48. }
  49. h1,h2,h3,h4 {
  50. margin: 5px 0px;
  51. font-weight: bold;
  52. }
  53. h2 {
  54. text-align: center;
  55. font-size: 12pt;
  56. color: #fff;
  57. }
  58. h4 {
  59. font-size: 8pt;
  60. }
  61. p {
  62. margin: 10px 5px;
  63. }
  64. li {
  65. margin: 5px 15px;
  66. }
  67. input {
  68. padding: 2px 3px;
  69. }
  70. textarea {
  71. padding: 2px 3px;
  72. }
  73. img {
  74. border: none;
  75. }
  76. /* Ratio Colors */
  77. .r00 { color: #FF0000; }
  78. .r01 { color: #FF1300; }
  79. .r02 { color: #FF1300; }
  80. .r03 { color: #FF2600; }
  81. .r04 { color: #FF4C00; }
  82. .r05 { color: #FF5E00; }
  83. .r06 { color: #FF5E00; }
  84. .r07 { color: #FF7100; }
  85. .r08 { color: #FF9700; }
  86. .r09 { color: #FFAA00; }
  87. .r10 { color: #74C42E; }
  88. .r20 { color: #418B00; }
  89. .r50 { color: #418B00; }
  90. .r99 { color: #418B00; }
  91. /* Styles generated by the BBCode parser */
  92. span.size1 {
  93. font-size: 0.75em;
  94. }
  95. span.size2 {
  96. font-size: 1em;
  97. }
  98. span.size3 {
  99. font-size: 1.25em;
  100. }
  101. span.size4 {
  102. font-size: 1.5em;
  103. }
  104. span.size5 {
  105. font-size: 1.75em;
  106. }
  107. span.size6 {
  108. font-size: 2em;
  109. }
  110. span.size7 {
  111. font-size: 2.25em;
  112. }
  113. span.size8 {
  114. font-size: 2.5em;
  115. }
  116. span.size9 {
  117. font-size: 2.75em;
  118. }
  119. span.size10 {
  120. font-size: 3em;
  121. }
  122. ul.thin {
  123. margin: 0px 0px 0px 25px;
  124. padding: 0px;
  125. }
  126. ul.thin li {
  127. margin: 0px 0px;
  128. padding: 0px;
  129. }
  130. /* Layout (Every page) */
  131. #header {
  132. width: 100%;
  133. padding: 0px 0 0 0;
  134. }
  135. #content {
  136. margin: auto;
  137. width: 100%;
  138. overflow: hidden;
  139. background-color: #303030;
  140. position: relative;
  141. top: 60px;
  142. min-width: 850px;
  143. }
  144. #wrapper {
  145. width: 90%;
  146. margin: 0px auto;
  147. }
  148. #footer {
  149. margin-top: 60px;
  150. width: 100%;
  151. text-align: center;
  152. padding: 1em 0;
  153. color: #fff;
  154. }
  155. #logo {
  156. width: 220px;
  157. height: 50px;
  158. background: url('images/logo.png') no-repeat center center;
  159. margin: 5px auto 0px auto;
  160. }
  161. #logo a {
  162. border: none;
  163. width: 220px;
  164. height: 50px;
  165. display: block;
  166. }
  167. #logo a:hover {
  168. border: none;
  169. }
  170. #menu {
  171. position: absolute;
  172. top: 85px;
  173. width: 90%;
  174. padding: 0.6em 0;
  175. text-align: center;
  176. background-color: #222;
  177. font-size: 10pt;
  178. min-width: 850px;
  179. }
  180. #menu ul li {
  181. position: relative;
  182. display: inline;
  183. background-color: #454545;
  184. padding: 6px 0;
  185. margin: 0px;
  186. }
  187. #index #nav_index, #torrents #nav_torrents, #requests #nav_requests, #forums #nav_forums, #top10 #nav_top10, #rules #nav_rules, #wiki #nav_wiki, #staff #nav_staff, #collage #nav_collages, #chat #nav_irc {
  188. background-color: #303030;
  189. }
  190. #menu ul li a {
  191. padding: 0.6em 2%;
  192. color: #fff;
  193. }
  194. #menu ul li a:hover {
  195. background-color: #303030;
  196. text-decoration: none;
  197. color: #fff;
  198. }
  199. #userinfo {
  200. background: #1c1c1c;
  201. color: #777;
  202. width: 100%;
  203. text-align: center;
  204. font-size: 8pt;
  205. padding: 3px 0px;
  206. z-index: 10;
  207. min-width: 850px;
  208. }
  209. #userinfo img {
  210. }
  211. #userinfo ul {
  212. display: inline;
  213. margin: 0px 0.8%;
  214. padding: 4px;
  215. }
  216. #userinfo ul li {
  217. position: relative;
  218. display: inline;
  219. margin: 0 0.1em;
  220. line-height: 20px;
  221. vertical-align: middle;
  222. padding: 2px;
  223. }
  224. #userinfo a {
  225. color: #777;
  226. }
  227. #userinfo a:hover {
  228. text-decoration: underline;
  229. }
  230. #userinfo b a {
  231. font-weight: normal;
  232. font-size: 0.9em;
  233. }
  234. #userinfo span.stat {
  235. color: #AAA;
  236. }
  237. #userinfo_username {
  238. position: absolute;
  239. top: 10px;
  240. left: 5%;
  241. }
  242. #userinfo_major {
  243. position: absolute;
  244. top: 10px;
  245. right: 5%;
  246. }
  247. #searchbars {
  248. position: absolute;
  249. top: 115px;
  250. width: 90%;
  251. text-align: center;
  252. background-color: #303030;
  253. padding: 4px 0px;
  254. min-width: 850px;
  255. }
  256. #searchbars input {
  257. position: relative;
  258. padding: 3px 3px 3px 5px;
  259. font-size: 0.9em;
  260. background-color: #222;
  261. color: #ccc;
  262. border: 1px solid #303030;
  263. }
  264. #searchbars ul {
  265. margin: 0 auto;
  266. display: block;
  267. }
  268. #searchbars ul li {
  269. display: inline;
  270. margin: 0px 1px;
  271. list-style: none;
  272. position: relative;
  273. }
  274. #searchbars ul li ul {
  275. display: block;
  276. position: absolute;
  277. top: 1em;
  278. left: 0;
  279. z-index: 1000;
  280. width: 12em;
  281. margin-top: 12px;
  282. }
  283. #searchbars ul li ul li {
  284. margin: 0;
  285. padding: 0;
  286. display: block;
  287. width: 100%;
  288. background: #303030;
  289. }
  290. #searchbars ul li ul li.highlight {
  291. background: #454545;
  292. }
  293. #searchbars ul li form {
  294. display: inline;
  295. }
  296. #alerts {
  297. position: relative;
  298. margin-top: 60px;
  299. margin-bottom: -60px;
  300. padding: 10px 0px;
  301. width: 100%;
  302. background-color: #303030;
  303. min-width: 850px;
  304. }
  305. #alerts a {
  306. color: #ccc;
  307. }
  308. .alertbar.blend {
  309. background-color: #222;
  310. border: 1px solid #303030;
  311. }
  312. #cat-selector ul {
  313. width: 100%;
  314. }
  315. #cat-selector ul li {
  316. display: inline;
  317. width: 12em;
  318. height: 1em;
  319. float: left;
  320. }
  321. .alertbar {
  322. background-color: #222;
  323. text-align: center;
  324. color: #ccc;
  325. font-weight: bold;
  326. font-size: 0.95em;
  327. width: 350px;
  328. margin: 0px auto 0px auto;
  329. padding: 10px;
  330. }
  331. .alertbar a {
  332. color: #555;
  333. text-decoration: underline;
  334. }
  335. .alertbar a:hover {
  336. color: #777;
  337. text-decoration: none;
  338. }
  339. /* IE doesn't appear to like a simple display:none in our header. Random things start fucking up pretty badly. */
  340. .hidden {
  341. position: absolute;
  342. left: -10000px;
  343. }
  344. input.hidden {
  345. position: absolute;
  346. display: none;
  347. }
  348. /* Layout (Any page) */
  349. .thin {
  350. width: 850px;
  351. margin: 0px auto;
  352. }
  353. .widethin { /* overriding the thin class on torrents.php */
  354. width: 95% !important;
  355. margin: 0px auto;
  356. }
  357. #userinfo_major .brackets:before {
  358. font-weight: bold;
  359. }
  360. #userinfo_major .brackets:after {
  361. font-weight: bold;
  362. }
  363. div.linkbox {
  364. text-align: center;
  365. padding: 5px;
  366. }
  367. .center {
  368. text-align: center;
  369. }
  370. .right {
  371. text-align: right;
  372. }
  373. .min_padding {
  374. padding: 0px;
  375. margin: 0px 0px;
  376. }
  377. p.min_padding {
  378. margin: 2px 0px;
  379. }
  380. .pad {
  381. padding: 1em;
  382. }
  383. .sidebar .pad {
  384. padding: 9px;
  385. }
  386. .vertical_space {
  387. margin-bottom: 10px;
  388. }
  389. .box {
  390. font-size: 8pt;
  391. background-color: #282828;
  392. border: 1px solid #303030;
  393. margin-bottom: 10px;
  394. }
  395. .box2 {
  396. font-size: 8pt;
  397. background-color: #282828;
  398. border: 1px solid #303030;
  399. margin-bottom: 10px;
  400. }
  401. .pad h3,.pad h4,.padbox h3,.padbox h4 {
  402. margin-top: 0px;
  403. padding-top: 0px;
  404. }
  405. .sidebar {
  406. float: right;
  407. width: 245px;
  408. }
  409. .head {
  410. padding: 4px;
  411. border-bottom: 1px solid #303030;
  412. background: #121212;
  413. color: white;
  414. }
  415. .body {
  416. padding: 3px 10px 10px 10px;
  417. }
  418. .main_column {
  419. width: 592px;
  420. }
  421. .main_column table {
  422. margin-bottom: 10px;
  423. }
  424. .tags {
  425. padding: 0px 0px 0px 20px;
  426. font-style: italic;
  427. }
  428. .tags a {
  429. color: #7e7e7e;
  430. }
  431. .tags a:hover {
  432. color: #dedede;
  433. text-decoration: none;
  434. }
  435. .noborder {
  436. border: none;
  437. }
  438. ul.nobullet {
  439. list-style-type: none;
  440. }
  441. table {
  442. width: 100%;
  443. border-collapse: collapse;
  444. border: 1px solid #303030;
  445. }
  446. tr {
  447. border: 1px solid #303030;
  448. background-color: #222;
  449. }
  450. td, th {
  451. border: 1px solid #303030;
  452. padding: 5px;
  453. text-align: left;
  454. }
  455. .colhead {
  456. background: #121212;
  457. font-weight: bold;
  458. color: #ffffff;
  459. }
  460. td.colhead,.colhead td, .colhead th {
  461. padding-left: 10px;
  462. padding-right: 10px;
  463. }
  464. .colhead .sign {
  465. padding: 0px 8px 0px 8px;
  466. font-size: 12pt;
  467. font-weight: bold;
  468. vertical-align: middle;
  469. }
  470. .colhead_dark {
  471. background: #121212;
  472. color: #ccc;
  473. vertical-align: middle;
  474. }
  475. .colhead_dark a {
  476. color: #fff;
  477. }
  478. td.label {
  479. font-weight: bold;
  480. text-align: right;
  481. width: 180px;
  482. }
  483. table.slice {
  484. margin-top: -1px;
  485. }
  486. .error_message {
  487. border: 1px solid #666;
  488. padding: 3px 0px 3px 0px;
  489. background-color: #AF2525;
  490. text-align: center;
  491. color: white;
  492. font-weight: bold;
  493. }
  494. .save_message {
  495. border: 1px solid #666;
  496. padding: 3px 0px 3px 0px;
  497. background-color: #F4E649;
  498. text-align: center;
  499. color: #492802;
  500. font-weight: bold;
  501. }
  502. .elem_error {
  503. border: 3px solid #B00D0D;
  504. }
  505. .hidden {
  506. display: none;
  507. }
  508. /* Layout (home page) */
  509. ul.stats li {
  510. padding: 0px 0px 1px 0px;
  511. }
  512. ul.poll li {
  513. padding: 0px 0px 0px 10px;
  514. margin: 0px;
  515. clear: left;
  516. }
  517. ul.poll li.graph {
  518. margin-bottom: 3px;
  519. padding-left: 20px;
  520. }
  521. /* Layout (Torrents page) */
  522. .show_torrents {
  523. width: 28px;
  524. height: 28px;
  525. background: url('images/show.png') no-repeat center center;
  526. }
  527. .hide_torrents {
  528. width: 28px;
  529. height: 28px;
  530. background: url('images/hide.png') no-repeat center center;
  531. }
  532. .show_torrents_link {
  533. border: none;
  534. width: 28px;
  535. height: 28px;
  536. display: block;
  537. }
  538. .filter_torrents {
  539. width: 750px;
  540. margin: auto;
  541. }
  542. .filter_torrents .submit {
  543. text-align: right;
  544. padding-top: 5px;
  545. }
  546. #content form.search_form + .torrent_table {
  547. margin-top: 20px;
  548. }
  549. .cat_list tr td {
  550. border: none;
  551. }
  552. .torrent_table tr {
  553. vertical-align: top;
  554. }
  555. .colhead .sign, .colhead_dark .sign {
  556. padding: 0px 8px 0px 8px;
  557. vertical-align:middle;
  558. text-align:center;
  559. font-size: 12pt;
  560. font-weight: bold;
  561. }
  562. .torrent_table tr.group, tr.group_torrent, tr.torrent {
  563. background-color: #222;
  564. }
  565. .torrent_table div.tags {
  566. font-weight: normal;
  567. }
  568. .torrent_table tr .center {
  569. vertical-align: middle;
  570. text-align: center;
  571. }
  572. .group_torrent span {
  573. float: right;
  574. }
  575. .torrent span {
  576. font-weight:normal;
  577. float:right;
  578. }
  579. .nobr {
  580. white-space: nowrap;
  581. }
  582. /* Layout (Forums) */
  583. .last_read {width: 15px; height: 15px; background: url(images/go_last_read.png) no-repeat center center; margin-left: 5px;}
  584. .last_read a { border: none; width: 100%; height: 100%; display: block; }
  585. .last_read a:hover { border: none; }
  586. .unread_locked_sticky,.read_locked_sticky {background: url(images/locked_sticky.png) no-repeat center center;}
  587. .read_sticky,.unread_sticky{background: url(images/sticky.png) no-repeat center center;}
  588. .unread_locked {background: url(images/locked_unread.png) no-repeat center center;}
  589. .read_locked {background: url(images/locked_read.png) no-repeat center center;}
  590. .unread{background: url(images/unread.png) no-repeat center center;}
  591. .read{background: url(images/read.png) no-repeat center center;}
  592. strong.quoteheader{color: #999; }
  593. table.forum_post {
  594. margin: 10px 0px;
  595. }
  596. table.forum_post td {
  597. border: 1px solid #303030;
  598. }
  599. table.forum_unread {
  600. border: 2px solid #CCC;
  601. }
  602. td.avatar {
  603. width: 150px;
  604. padding: 0px;
  605. }
  606. table.forum_post td.body {
  607. max-width: 675px;
  608. }
  609. tbody {
  610. max-width: 690px;
  611. }
  612. blockquote {
  613. margin: 10px;
  614. padding: 10px;
  615. border: 1px dashed #666;
  616. }
  617. /* Layout (Inbox) */
  618. tr.unreadpm {
  619. background-color: #692222;
  620. }
  621. /* Layout (Permission Page) */
  622. .permission_head {
  623. width: 400px;
  624. margin-left: auto;
  625. margin-right: auto;
  626. }
  627. .permissions {
  628. width: 930px;
  629. margin-left: auto;
  630. margin-right: auto;
  631. }
  632. .permission_container {
  633. float: left;
  634. width: 300px;
  635. padding: 5px;
  636. }
  637. .permission_container input {
  638. margin: 0px 3px 5px 0px;
  639. vertical-align: top;
  640. }
  641. .submit_container {
  642. clear: both;
  643. text-align: right;
  644. }
  645. /* Layout (Invite tree) */
  646. ul .invitetree {
  647. margin: 0px 0px 0px 25px;
  648. }
  649. .invitetree li {
  650. list-style: none;
  651. margin: 10px 2px;
  652. }
  653. /* Layout (User options) */
  654. .user_options .options_list li {
  655. margin: 0;
  656. }
  657. /* Layout (MISC) */
  658. .left_poll {
  659. width: 2px;
  660. height: 9px;
  661. background: url('images/bar_left.gif') no-repeat center center;
  662. float: left;
  663. margin: 0px;
  664. padding: 0px;
  665. }
  666. .center_poll {
  667. height: 9px;
  668. background: url('images/bar.gif') repeat;
  669. float: left;
  670. margin: 0px;
  671. padding: 0px;
  672. }
  673. .right_poll {
  674. width: 2px;
  675. height: 9px;
  676. background: url('images/bar_right.gif') no-repeat center center;
  677. float: left;
  678. margin: 0px;
  679. padding: 0px;
  680. }
  681. .curtain {
  682. position: fixed;
  683. top: 0%;
  684. left: 0%;
  685. width: 100%;
  686. height: 100%;
  687. background-color: black;
  688. z-index: 1001;
  689. -moz-opacity: 0.8;
  690. opacity: .80;
  691. filter: alpha(opacity=80);
  692. }
  693. .lightbox {
  694. position: fixed;
  695. text-align: center;
  696. top: 5%;
  697. left: 5%;
  698. width: 90%;
  699. height: 90%;
  700. padding: 0px;
  701. z-index: 1002;
  702. overflow: auto;
  703. }
  704. table#torrent_table.torrent_table {
  705. margin: auto;
  706. }
  707. form tr {
  708. background-color: #222222;
  709. }
  710. .center {
  711. text-align: center;
  712. }
  713. .spellcheck {
  714. margin: 25px 0;
  715. font-size: 1.25em;
  716. font-weight: bold;
  717. }
  718. tr.torrent .bookmark > a:before { color:#999; }
  719. tr.torrent .bookmark > a:after { color:#999; }
  720. .linkbox .brackets:before,
  721. .linkbox .brackets:after,
  722. .top10_quantity_links .brackets:before,
  723. .top10_quantity_links .brackets:after {
  724. color: #999;
  725. }
  726. .field_div {
  727. margin-bottom: 10px;
  728. }
  729. .edit_changelog textarea {
  730. width: 600px;
  731. }
  732. .autocomplete-suggestions {
  733. background: #222;
  734. }
  735. .post_id {
  736. font-weight: normal;
  737. }
  738. /* workaround for calendar display issue */
  739. div.sidebar #event_div {
  740. margin-left: -232px;
  741. }
  742. ol {
  743. margin-left: 1em;
  744. }
  745. #forum_search_cat_list, #forum_search_cat_list tr {
  746. border: none;
  747. }