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

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180
  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: 0px 0px 0px 20px;
  440. font-style: italic;
  441. }
  442. .tags a {
  443. color: black;
  444. }
  445. .tags a:hover {
  446. color: black;
  447. text-decoration: underline;
  448. }
  449. .noborder {
  450. border: none;
  451. }
  452. ul.nobullet, ul.nobullet li {
  453. list-style-type: none;
  454. }
  455. table {
  456. width: 100%;
  457. border-collapse: collapse;
  458. /* border: 1px solid #666666; */
  459. }
  460. tr {
  461. background-color: white;
  462. }
  463. td, th {
  464. /* border: 1px solid #666666; */
  465. padding: 5px;
  466. text-align: left;
  467. }
  468. .colhead {
  469. background: #9fedd7;
  470. font-weight: bold;
  471. color: black;
  472. }
  473. td.colhead, .colhead td, .colhead th {
  474. padding-left: 10px;
  475. padding-right: 10px;
  476. }
  477. .colhead .sign, .colhead_dark .sign {
  478. padding: 0px 8px 0px 8px;
  479. vertical-align: middle;
  480. text-align: center;
  481. font-size: 12pt;
  482. font-weight: bold;
  483. }
  484. .colhead .sign {
  485. padding: 0px 8px 0px 8px;
  486. font-size: 12pt;
  487. font-weight: bold;
  488. }
  489. .colhead_dark {
  490. /* background: #E1E1E1; */
  491. background: #9fedd7;
  492. color:black;
  493. }
  494. .forum_post .colhead_dark {
  495. background: #9fedd7;
  496. }
  497. .forum_post.staff_post .colhead_dark {
  498. background: #fbe180;
  499. }
  500. .forum_post.sticky_post {
  501. border: 3px solid #fbe180;
  502. }
  503. td.label {
  504. font-weight: bold;
  505. text-align: right;
  506. width: 180px;
  507. }
  508. table.slice {
  509. margin-top: -1px;
  510. }
  511. .error_message {
  512. padding: 10px;
  513. background-color: #AF2525;
  514. text-align: center;
  515. color: white;
  516. font-weight: bold;
  517. }
  518. .save_message {
  519. padding: 10px;
  520. width: 50%;
  521. margin: 2em auto;
  522. background: #fbe180;
  523. text-align: center;
  524. color: black;
  525. font-weight: bold;
  526. }
  527. .elem_error {
  528. border: 3px solid #B00D0D;
  529. }
  530. .hidden {
  531. display: none;
  532. }
  533. ul.nobullet {
  534. display: inline-block;
  535. }
  536. /* Layout (home page) */
  537. ul.stats li {
  538. padding: 0px 0px 1px 0px;
  539. }
  540. ul.poll li {
  541. padding: 0px 0px 0px 10px;
  542. margin: 0px;
  543. clear: left;
  544. }
  545. ul.poll li.graph {
  546. margin-bottom: 3px;
  547. padding-left: 20px;
  548. }
  549. /* Layout (torrents page) */
  550. .show_torrents {
  551. width: 21px;
  552. height: 28px;
  553. background: url('images/show2.png') no-repeat center center;
  554. }
  555. .hide_torrents {
  556. width: 21px;
  557. height: 28px;
  558. background: url('images/hide2.png') no-repeat center center;
  559. }
  560. .show_torrents_link {
  561. border: none;
  562. width: 28px;
  563. height: 28px;
  564. display: block;
  565. cursor: pointer;
  566. }
  567. .filter_torrents {
  568. width: 750px;
  569. margin: auto;
  570. background: white;
  571. }
  572. .filter_torrents .submit {
  573. text-align: right;
  574. padding-top: 5px;
  575. }
  576. #content form.search_form + .torrent_table {
  577. margin-top: 20px;
  578. }
  579. #content form.search_form .submit {
  580. text-align: center;
  581. }
  582. .cat_list tr td {
  583. border: none;
  584. }
  585. .torrent_table tr {
  586. /* vertical-align: top; */
  587. vertical-align: middle;
  588. }
  589. .torrent_table .number_column {
  590. text-align: center;
  591. }
  592. .torrent_table, .torrent_table td {
  593. border: none;
  594. }
  595. .torrent_table tr.torrent, .torrent_table tr.group {
  596. font-weight: bold;
  597. }
  598. .torrent_table tr.group {
  599. background-color: white;
  600. }
  601. .torrent_table tr.group_torrent {
  602. background-color: white;
  603. }
  604. .torrent_table tr.torrent {
  605. background-color: white;
  606. }
  607. .torrent_table tr.group td.center:first-child {
  608. padding: 3px;
  609. width: 21px;
  610. }
  611. .torrent_table tr.torrent:nth-child(2n),
  612. .collage_table tr.row:nth-child(2n) {
  613. background-color: whitesmoke;
  614. }
  615. .torrent_table tr.torrent:nth-child(2n-1),
  616. .collage_table tr.row:nth-child(2n-1) {
  617. background-color: white;
  618. }
  619. .torrent_table tr.group {
  620. background-color: white;
  621. }
  622. .torrent_table div.tags {
  623. font-weight: normal;
  624. max-width: 500px;
  625. }
  626. .torrent_table tr .center, #collage_table td {
  627. vertical-align: middle;
  628. /* text-align: center; */
  629. }
  630. #collage_name,
  631. #request_name {
  632. font-weight: bold;
  633. }
  634. .group_torrent span {
  635. float: right;
  636. }
  637. .torrent span {
  638. font-weight: normal;
  639. float: right;
  640. }
  641. .nobr {
  642. white-space: nowrap;
  643. }
  644. /* Layout (forums) */
  645. .last_read {margin-left: 5px; fill: #A9A9A9;}
  646. .colhead_dark .last_read {fill: #DC86E0;}
  647. .unread_locked_sticky{background: url(images/locked_sticky_unread.png) no-repeat center center;}
  648. .read_locked_sticky{background: url(images/locked_sticky_read.png) no-repeat center center;}
  649. .read_sticky{background: url(images/sticky_read.png) no-repeat center center;}
  650. .unread_sticky{background: url(images/sticky_unread.png) no-repeat center center;}
  651. .unread_locked{background: url(images/locked_unread.png) no-repeat center center;}
  652. .read_locked{background: url(images/locked_read.png) no-repeat center center;}
  653. .unread{background: url(images/unread.png) no-repeat center center;}
  654. .read{background: url(images/read.png) no-repeat center center;}
  655. strong.quoteheader {color: black;}
  656. tr.row:nth-of-type(odd) {
  657. background-color: white;
  658. }
  659. table.forum_post {
  660. margin: 10px 0px;
  661. }
  662. table.forum_post td {
  663. /* border: 1px solid #666; */
  664. border: none;
  665. }
  666. table.forum_unread {
  667. border: 2px solid red;
  668. }
  669. td.avatar {
  670. max-width: 120px;
  671. padding: 0px;
  672. }
  673. .box_description > div:not(.head) {
  674. max-height: 400px;
  675. overflow-y: scroll;
  676. }
  677. .box_description, table.forum_post td.body {
  678. word-break: break-word;
  679. word-wrap: break-word;
  680. display: inline-block;
  681. }
  682. .box_description {
  683. width: 100%;
  684. }
  685. .thin > table.forum_post td.body {
  686. width: 690px;
  687. }
  688. #torrent_comments table.forum_post td.body {
  689. width: 422px;
  690. }
  691. blockquote {
  692. margin: 10px;
  693. padding: 10px;
  694. /* border: 1px dashed #666; */
  695. border: 1px solid #BBB;
  696. }
  697. /* Layout (inbox) */
  698. tr.unreadpm {
  699. background-color: #fff9c7;
  700. }
  701. /* Layout (permission page) */
  702. .permission_head {
  703. width: 400px;
  704. margin-left: auto;
  705. margin-right: auto;
  706. }
  707. .permissions {
  708. width: 930px;
  709. margin-left: auto;
  710. margin-right: auto;
  711. }
  712. .permission_container {
  713. float: left;
  714. width: 300px;
  715. padding: 5px;
  716. }
  717. .permission_container input {
  718. margin: 0px 3px 5px 0px;
  719. vertical-align: top;
  720. }
  721. .submit_container {
  722. clear: both;
  723. text-align: right;
  724. }
  725. /* Layout (invite tree) */
  726. ul .invitetree {
  727. margin: 0px 0px 0px 25px;
  728. }
  729. .invitetree li {
  730. list-style: none;
  731. margin: 10px 2px;
  732. }
  733. /* Layout (user options) */
  734. .user_options .options_list li {
  735. margin: 0;
  736. }
  737. /* Layout (misc) */
  738. .left_poll {
  739. display: none;
  740. width: 2px;
  741. height: 9px;
  742. float: left;
  743. margin: 0px;
  744. padding: 0px;
  745. }
  746. .center_poll {
  747. height: 9px;
  748. background: white;
  749. border-radius: 4px;
  750. float: left;
  751. margin: 0px;
  752. padding: 0px;
  753. }
  754. .right_poll {
  755. display: none;
  756. width: 2px;
  757. height: 9px;
  758. float: left;
  759. margin: 0px;
  760. padding: 0px;
  761. }
  762. .curtain {
  763. position: fixed;
  764. top: 0%;
  765. left: 0%;
  766. width: 100%;
  767. height: 100%;
  768. background-color: black;
  769. z-index: 1001;
  770. -moz-opacity: 0.8;
  771. opacity: .80;
  772. filter: alpha(opacity=80);
  773. }
  774. .lightbox {
  775. position: fixed;
  776. text-align: center;
  777. top: 5%;
  778. left: 5%;
  779. width: 90%;
  780. height: 90%;
  781. padding: 0px;
  782. z-index: 1002;
  783. overflow: auto;
  784. }
  785. .center {
  786. text-align: center;
  787. }
  788. .spellcheck {
  789. margin: 25px 0;
  790. font-size: 1.25em;
  791. font-weight: bold;
  792. }
  793. tr.torrent .bookmark > a:before {
  794. color: black;
  795. }
  796. tr.torrent .bookmark > a:after {
  797. color: black;
  798. }
  799. .field_div {
  800. margin-bottom: 10px;
  801. }
  802. .edit_changelog textarea {
  803. width: 600px;
  804. }
  805. .brackets {
  806. font-weight: normal;
  807. }
  808. div[class~=tooltipster-content] > a {
  809. color: #edeae5;
  810. }
  811. .post_id {
  812. font-weight: normal;
  813. }
  814. /* Get rid of extraneous padding in the Top Contributors box */
  815. #request_top_contrib {
  816. border: none;
  817. }
  818. #request_top_contrib tr:first-child th {
  819. border-top: 0;
  820. }
  821. #request_top_contrib tr:last-child td {
  822. border-bottom: 0;
  823. }
  824. #request_top_contrib tr td:first-child,
  825. #request_top_contrib tr th:first-child,
  826. #request_top_contrib tr td:nth-child(2),
  827. #request_top_contrib tr th:nth-child(2) {
  828. border-left: 0;
  829. border-top: 0;
  830. }
  831. #request_top_contrib tr td:last-child,
  832. #request_top_contrib tr th:last-child {
  833. border-right: 0;
  834. }
  835. #request_table {
  836. margin-bottom: 5px;
  837. }
  838. #request_table .request:nth-of-type(odd){
  839. background: #edeae5;
  840. }
  841. #request_table .request:nth-of-type(even){
  842. background: white;
  843. }
  844. /* Workaround for calendar display issue */
  845. div.sidebar #event_div {
  846. margin-left: -232px;
  847. }
  848. ol {
  849. margin-left: 1em;
  850. }
  851. #forum_search_cat_list {
  852. border: none;
  853. }
  854. #coverCont {
  855. background-color: #fff9c7;
  856. padding: 5px;
  857. box-shadow: 2px 2px 10px -2px gray;
  858. }
  859. #coverCont img {
  860. background-color: #fff9c7;
  861. }
  862. .torrent_info {
  863. font-size: 100%;
  864. font-weight: 100;
  865. }
  866. .recent_snatches_images, .recent_uploads_images {
  867. position: relative;
  868. }
  869. .edit_tags_votes {
  870. padding-left: 5px;
  871. }
  872. .row_hl {
  873. background-color: #edeae5;
  874. }
  875. input.inputtext {
  876. border: none;
  877. border-bottom: 1px solid #edeae5;
  878. background-color: white;
  879. font-size: 13px;
  880. outline: none;
  881. transition: ease-in-out 0.12s;
  882. }
  883. input.inputtext:focus {
  884. border-bottom: 1px solid #fbe180;
  885. }
  886. .bbcode_bar {
  887. background: white;
  888. border: 1px solid #c7c7c7;
  889. border-bottom: none;
  890. }
  891. .bbcode_bar .emoji_box {
  892. background-color: white;
  893. }
  894. .collage_images .collage_image {
  895. margin: 1px;
  896. width: 121px;
  897. display: inline-block;
  898. }
  899. .box, .border, .alertbar, .artist_table, .request_table, .forum_index, #userinfo_minor > li > ul, .permissions table {
  900. box-shadow: 2px 2px 10px -2px gray;
  901. }
  902. #userinfo {
  903. box-shadow: 0 2px 10px -2px gray;
  904. /*
  905. .last_edited {
  906. font-size: 10px;
  907. opacity: 0.7;
  908. }
  909. */
  910. #comm_badge_tr .badge_icon, #user_badge_edit_tr .badge_icon {
  911. margin-right: 1em;
  912. margin-left: 2px;
  913. }
  914. .store_table .badge_icon {
  915. display: inline-block;
  916. width: 16px;
  917. }
  918. .store_table .badge_icon img {
  919. display: block;
  920. margin-left: auto;
  921. margin-right: auto;
  922. }
  923. .hnr-yes {
  924. color: red;
  925. }
  926. .hnr-no {
  927. color: green;
  928. }
  929. .webm {
  930. max-width: 100%;
  931. }
  932. .point_gift_box p {
  933. margin: 7px 2px 0px;
  934. }
  935. .point_gift_box input[type="text"], .point_gift_box textarea {
  936. width: 100%;
  937. box-sizing: border-box;
  938. }
  939. .dead {
  940. opacity: 0.5;
  941. }
  942. .search_warning {
  943. fill: #E197E5;
  944. }
  945. .tl_reported {
  946. color: red;
  947. }
  948. .tl_snatched {
  949. color: #C35C1C;
  950. }
  951. .tl_leeching {
  952. color: #BD0D0D;
  953. }
  954. .tl_seeding {
  955. color: #068206;
  956. }
  957. caption {
  958. border-bottom: 1px solid #edeae5;
  959. font-weight: bold;
  960. }
  961. /*
  962. .tag_parody {
  963. color: #e08e00 !important;
  964. }
  965. .tag_character {
  966. color: #099809 !important;
  967. }
  968. .tag_female {
  969. color: #d51b8a !important;
  970. }
  971. .tag_male {
  972. color: #0000ff !important;
  973. }
  974. */