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

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