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 14KB

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