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

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182
  1. /* Layout (Torrents page) */
  2. #site_debug td{
  3. border: 1px solid #666;
  4. }
  5. /* We're going to opt for the category icon method for now, tags_* is also available */
  6. .cats_dna { width: 38px; height: 38px; background: url('/static/common/caticons/dna.png') no-repeat center center; }
  7. .cats_rna { width: 38px; height: 38px; background: url('/static/common/caticons/rna.png') no-repeat center center; }
  8. .cats_protein { width: 38px; height: 38px; background: url('/static/common/caticons/protein.png') no-repeat center center; }
  9. .cats_other { width: 38px; height: 38px; background: url('/static/common/caticons/other.png') no-repeat center center; }
  10. /* Unused categories
  11. .cats_ebooks { width: 28px; height: 28px; background: url('images/ebook.png') no-repeat center center; }
  12. .cats_elearningvideos { width: 28px; height: 28px; background: url('images/elearning.png') no-repeat center center; }
  13. .cats_music { width: 28px; height: 28px; background: url('images/music.png') no-repeat center center; }
  14. */
  15. /* Global */
  16. * {
  17. padding: 0em;
  18. margin: 0em;
  19. }
  20. html {
  21. width: 100%;
  22. }
  23. body {
  24. width: 100%;
  25. background-color: #EDDDE7;
  26. font-family: tahoma, helvetica, sans-serif;
  27. font-size: 8pt;
  28. color: #000;
  29. min-width: 850px;
  30. }
  31. /* Common elements */
  32. a {
  33. text-decoration: none;
  34. border: none;
  35. color: #444;
  36. }
  37. a:hover {
  38. text-decoration: underline;
  39. color: #555;
  40. }
  41. button, input[type=button], input[type=submit] {
  42. background: #EAABED;
  43. box-shadow: 0 1px 1px 0 rgba(0,0,0,.14),0 3px 1px -2px rgba(0,0,0,.2),0 1px 5px 0 rgba(0,0,0,.12);
  44. }
  45. button:hover, input[type=button]:hover, input[type=submit]:hover {
  46. background: #E197E5;
  47. }
  48. button:focus, input[type=button]:focus, input[type=submit]:focus {
  49. background: #D48DD8;
  50. }
  51. .spoilerButton {
  52. max-width: 540px;
  53. }
  54. .forum_post .body a:not([href="#"]), .rule_summary a, .wiki_article a, #actual_rules a, .news_post .pad a, .store_table a {
  55. text-decoration: none;
  56. border: none;
  57. color: #862A5E;
  58. }
  59. .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 {
  60. text-decoration: underline;
  61. border: none;
  62. color: #B65A8E;
  63. }
  64. h1,h2,h3,h4 {
  65. margin: 5px 0px;
  66. font-weight: bold;
  67. }
  68. h2 {
  69. text-align: center;
  70. font-size: 12pt;
  71. }
  72. h4 {
  73. font-size: 8pt;
  74. }
  75. p {
  76. margin: 10px 5px;
  77. }
  78. li {
  79. margin: 5px 15px;
  80. }
  81. img {
  82. border: none;
  83. }
  84. /* Styles generated by the BBCode parser */
  85. span.size1 { font-size:0.75em; }
  86. span.size2 { font-size:1em; }
  87. span.size3 { font-size:1.25em; }
  88. span.size4 { font-size:1.5em; }
  89. span.size5 { font-size:1.75em; }
  90. span.size6 { font-size:2em; }
  91. span.size7 { font-size:2.25em; }
  92. span.size8 { font-size:2.5em; }
  93. span.size9 { font-size:2.75em; }
  94. span.size10 { font-size:3em; }
  95. ul.thin { margin:0px 0px 0px 25px; padding:0px; }
  96. ul.thin li { margin:0px 0px; padding:0px; }
  97. /* Layout (Every page) */
  98. #header {
  99. width: 100%;
  100. padding: 0px 0 0 0;
  101. background: #fbc2e5;
  102. margin-bottom: 10px;
  103. }
  104. #content {
  105. margin: auto;
  106. margin-top: 10px;
  107. /* margin-top: 100px; */
  108. width: 90%;
  109. min-width: 872px;
  110. overflow: hidden;
  111. }
  112. #footer {
  113. /* margin-top: 40px; */
  114. margin-top: 10px;
  115. width: 100%;
  116. text-align: center;
  117. padding: 1em 0;
  118. opacity: 0;
  119. transition: ease-in-out 0.3s;
  120. transition-delay: 0.7s;
  121. }
  122. #footer:hover {
  123. opacity: 1;
  124. }
  125. #logo {
  126. width: 250px;
  127. height: 50px;
  128. background: url('images/logo.png') no-repeat center center;
  129. margin: 0 0 0 10%;
  130. }
  131. #logo a {
  132. border: none;
  133. width: 100%;
  134. height: 50px;
  135. display: block;
  136. }
  137. #logo a:hover {
  138. border: none;
  139. }
  140. #menu {
  141. width: 100%;
  142. text-align: center;
  143. background-color: #461640;
  144. font-size: 10pt;
  145. }
  146. #menu > ul {
  147. display: flex;
  148. width: 80%;
  149. margin: 0 auto;
  150. }
  151. #menu > ul > li {
  152. position: relative;
  153. height: 32px;
  154. display: flex;
  155. margin: 0;
  156. flex: 1 1 auto;
  157. }
  158. #menu ul > li > a {
  159. padding: 0.6em 0;
  160. display: inline-block;
  161. width: 100%;
  162. color: #fbc2e5;
  163. transition: ease-in-out 0.1s;
  164. }
  165. #nav_links {
  166. max-width: 40px;
  167. }
  168. #menu ul li a.active {
  169. background-color: #565656;
  170. }
  171. #menu ul li a:hover {
  172. background-color: #7A3572;
  173. text-decoration: none;
  174. }
  175. #menu .nav_dropdown {
  176. background: #461640;
  177. margin-top: 0;
  178. }
  179. .nav_dropdown > div {
  180. position: absolute;
  181. background-color: #461640;
  182. width: 100%;
  183. z-index: 99999;
  184. margin-top: 32px;
  185. left: 0;
  186. }
  187. #nav_links > #links_menu {
  188. width: 120px;
  189. margin-left: -80px;
  190. }
  191. .nav_dropdown > div > a {
  192. display: none;
  193. color: #fbc2e5;
  194. height: 32px;
  195. line-height: 32px;
  196. }
  197. .nav_dropdown:hover > div > a {
  198. display: block;
  199. }
  200. #userinfo {
  201. /* position: absolute;
  202. top: 258px; */
  203. background: #fbc2e5;
  204. color: #444;
  205. padding: 4px 0px;
  206. width: 100%;
  207. text-align: center;
  208. font-size: 8pt;
  209. /* border-bottom: 1px solid #999; */
  210. }
  211. #userinfo img {
  212. margin-top: -5px;
  213. }
  214. #userinfo ul {
  215. display: inline;
  216. margin: 0px 0.8%;
  217. }
  218. #userinfo ul li {
  219. display: inline;
  220. margin: 0 0.1em;
  221. line-height: 20px;
  222. vertical-align: middle;
  223. padding: 0px;
  224. }
  225. #userinfo a {
  226. color: #222;
  227. }
  228. #userinfo a:hover {
  229. text-decoration: underline;
  230. }
  231. #userinfo b a {
  232. font-weight: normal;
  233. font-size: 0.9em;
  234. font-weight: bold;
  235. }
  236. #searchbars {
  237. text-align: center;
  238. background-color: #7A3572;
  239. box-sizing: content-box;
  240. padding: 4px 10%;
  241. border-bottom: 2px solid #FBC2E5;
  242. display: flex;
  243. }
  244. #searchbars > .search_form {
  245. flex: 1 1 auto;
  246. text-align: center;
  247. margin: 0 3px;
  248. }
  249. #searchbars input {
  250. position: relative;
  251. border: 1px solid transparent;
  252. box-sizing: border-box;
  253. padding: 2px 2px 2px 4px;
  254. font-size: 0.9em;
  255. background-color: #e0e0e0;
  256. width: 100%;
  257. color: #444;
  258. }
  259. #searchbars ul {
  260. margin: 0 auto;
  261. display: block;
  262. text-align: center;
  263. }
  264. #searchbars ul li {
  265. display: inline;
  266. margin: 0px 1px;
  267. list-style: none;
  268. position: relative;
  269. }
  270. #searchbars ul li ul {
  271. display: block;
  272. position: absolute;
  273. top: 1em;
  274. left: 0;
  275. z-index: 1000;
  276. background-color: #999;
  277. width: 12em;
  278. margin-top: 12px;
  279. }
  280. #searchbars ul li ul li {
  281. margin: 0 0 0 0;
  282. padding: 0;
  283. display: block;
  284. width: 100%;
  285. }
  286. #searchbars ul li ul li.highlight {
  287. background: #D7D7D7;
  288. }
  289. #searchbars ul li form {
  290. display: inline;
  291. }
  292. #alerts {
  293. /* margin-top: 85px;
  294. margin-bottom: -85px; */
  295. background: #EDDDE7;
  296. /* padding: 10px 0px; */
  297. margin: 10px 0px;
  298. }
  299. #cat-selector ul {
  300. width: 100%;
  301. }
  302. #cat-selector ul li {
  303. display: inline;
  304. width: 12em;
  305. height: 1em;
  306. float: left;
  307. }
  308. .alertbar {
  309. background-color: #fbc2e5;
  310. text-align: center;
  311. color: #444;
  312. font-weight: bold;
  313. font-size: 0.95em;
  314. width: 350px;
  315. margin: 0 auto 0px auto;
  316. padding: 10px;
  317. margin-bottom: 8px;
  318. }
  319. .alertbar.warning {
  320. background-color: #ffe68a;
  321. }
  322. .alertbar.error {
  323. background-color: #ff8a8a;
  324. }
  325. .alertbar a {
  326. color: #555;
  327. text-decoration: underline;
  328. }
  329. .alertbar.modbar a {
  330. margin: 0px 5px;
  331. }
  332. .alertbar a:hover {
  333. color: #777;
  334. text-decoration: none;
  335. }
  336. /* IE doesn't appear to like a simple display:none in our header. Random things start fucking up pretty badly. */
  337. .hidden {
  338. position: absolute;
  339. left: -10000px;
  340. }
  341. input.hidden {
  342. position: absolute;
  343. display: none;
  344. }
  345. /* Layout (Any page) */
  346. .thin {
  347. width: 850px;
  348. margin: 0px auto;
  349. }
  350. .widethin { /* overriding the thin class on torrents.php */
  351. width: 95% !important;
  352. margin: 0px auto;
  353. }
  354. #userinfo_major .brackets:before {
  355. font-weight: bold;
  356. }
  357. #userinfo_major .brackets:after {
  358. font-weight: bold;
  359. }
  360. #userinfo_minor {
  361. position: absolute;
  362. text-align: left;
  363. }
  364. #userinfo_minor > li > ul {
  365. display: none;
  366. position: absolute;
  367. padding: 5px;
  368. left: -5px;
  369. background-color: #FBC2E5;
  370. z-index: 100;
  371. }
  372. #userinfo #userinfo_minor li {
  373. display: block;
  374. }
  375. div.linkbox {
  376. text-align:center;
  377. padding: 5px;
  378. }
  379. .center {
  380. text-align: center;
  381. }
  382. .right {
  383. text-align: right;
  384. }
  385. .min_padding {
  386. padding: 0px;
  387. margin: 0px 0px;
  388. }
  389. p.min_padding {
  390. margin: 2px 0px;
  391. }
  392. .pad {
  393. padding: 1em;
  394. }
  395. .slight_margin {
  396. margin: 4px;
  397. }
  398. .vertical_space {
  399. margin-bottom: 10px;
  400. }
  401. .box {
  402. font-size: 8pt;
  403. background-color: #EEE;
  404. /* border: 1px solid #666666; */
  405. border: none;
  406. margin-bottom: 10px;
  407. }
  408. .torrents_nomatch {
  409. margin-top: 10px;
  410. }
  411. .box2 {
  412. margin-bottom: 10px;
  413. font-size: 8pt;
  414. background-color: #EAEAEA;
  415. /* border: 1px solid #666666; */
  416. border: none;
  417. }
  418. .pad h3, .pad h4, .padbox h3, .padbox h4 {
  419. margin-top: 0px;
  420. padding-top: 0px;
  421. }
  422. .sidebar {
  423. float: right;
  424. width: 245px;
  425. }
  426. .head {
  427. padding: 4px;
  428. /* border-bottom: 1px solid #666; */
  429. /* background: #E1E1E1; */
  430. background: #EAABED;
  431. color: #333;
  432. }
  433. .body {
  434. padding: 3px 10px 10px 10px;
  435. }
  436. .main_column {
  437. width: 592px;
  438. }
  439. .main_column table {
  440. margin-bottom: 10px;
  441. }
  442. .tags {
  443. padding: 0px 0px 0px 20px;
  444. font-style: italic;
  445. }
  446. .tags a {
  447. color: #222;
  448. }
  449. .tags a:hover {
  450. color: #444;
  451. text-decoration: underline;
  452. }
  453. .noborder {
  454. border: none;
  455. }
  456. ul.nobullet, ul.nobullet li {
  457. list-style-type: none;
  458. }
  459. table {
  460. width: 100%;
  461. border-collapse: collapse;
  462. /* border: 1px solid #666666; */
  463. }
  464. tr {
  465. background-color: #EEE;
  466. }
  467. td, th {
  468. /* border: 1px solid #666666; */
  469. padding: 5px;
  470. text-align: left;
  471. }
  472. .colhead {
  473. background: #E197E5;
  474. font-weight: bold;
  475. color: #000;
  476. }
  477. td.colhead, .colhead td, .colhead th {
  478. padding-left: 10px;
  479. padding-right: 10px;
  480. }
  481. .colhead .sign, .colhead_dark .sign {
  482. padding: 0px 8px 0px 8px;
  483. vertical-align: middle;
  484. text-align: center;
  485. font-size: 12pt;
  486. font-weight: bold;
  487. }
  488. .colhead .sign {
  489. padding: 0px 8px 0px 8px;
  490. font-size: 12pt;
  491. font-weight: bold;
  492. }
  493. .colhead_dark {
  494. /* background: #E1E1E1; */
  495. background: #E197E5;
  496. color: #333;
  497. }
  498. .forum_post .colhead_dark {
  499. background: #F1CDF4;
  500. }
  501. .forum_post.staff_post .colhead_dark {
  502. background: #f1849a;
  503. }
  504. .forum_post.sticky_post {
  505. border: 3px solid #f1849a;
  506. }
  507. td.label {
  508. font-weight: bold;
  509. text-align: right;
  510. width: 180px;
  511. }
  512. table.slice {
  513. margin-top: -1px;
  514. }
  515. .error_message {
  516. padding: 8px 0px;
  517. background-color: #AF2525;
  518. text-align: center;
  519. color: white;
  520. font-weight: bold;
  521. }
  522. .save_message {
  523. padding: 8px 0px;
  524. background-color: #F8C2E8;
  525. text-align: center;
  526. color: #555555;
  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: #EEE;
  573. }
  574. .filter_torrents .submit {
  575. text-align: right;
  576. padding-top: 5px;
  577. }
  578. .filter_torrents .ft_cat_list {
  579. border-top: 1px solid #AAA;
  580. border-bottom: 1px solid #AAA;
  581. }
  582. #content form.search_form + .torrent_table {
  583. margin-top: 20px;
  584. }
  585. #content form.search_form .submit {
  586. text-align: center;
  587. }
  588. .cat_list tr td {
  589. border: none;
  590. }
  591. .torrent_table tr {
  592. /* vertical-align: top; */
  593. vertical-align: middle;
  594. }
  595. .torrent_table .number_column {
  596. text-align: center;
  597. }
  598. .torrent_table, .torrent_table td {
  599. border: none;
  600. }
  601. .torrent_table tr.torrent, .torrent_table tr.group {
  602. font-weight: bold;
  603. }
  604. .torrent_table tr.group {
  605. background-color: #cfcfcf;
  606. }
  607. .torrent_table tr.group_torrent {
  608. background-color: #fafafa;
  609. }
  610. .torrent_table tr.torrent {
  611. background-color: #ddd;
  612. }
  613. .torrent_table tr.group td.center:first-child {
  614. padding: 3px;
  615. width: 21px;
  616. }
  617. .torrent_table tr.torrent:nth-child(2n) {
  618. background-color: #FAD1E3;
  619. }
  620. .torrent_table tr.torrent:nth-child(2n-1) {
  621. background-color: #EDC5F4;
  622. }
  623. .torrent_table tr.group {
  624. background-color: #F8B8FF;
  625. }
  626. .torrent_table div.tags {
  627. font-weight: normal;
  628. max-width: 500px;
  629. }
  630. .torrent_table tr .center, #collage_table td {
  631. vertical-align: middle;
  632. text-align: center;
  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: #000;}
  656. tr.row:nth-of-type(odd) {
  657. background-color: #E2E2E2;
  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 #F0BBD6;
  668. }
  669. td.avatar {
  670. width: 150px;
  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: #ECC;
  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: #C5D1FF;
  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: #AAAAAA;
  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. #requests table.layout.cat_list {
  836. border-bottom: 1px solid #AAA;
  837. border-top: 1px solid #AAA;
  838. }
  839. #requests tr#media_list {
  840. border-bottom: 1px solid #AAA;
  841. border-top: 1px solid #AAA;
  842. }
  843. #request_table {
  844. margin-bottom: 5px;
  845. }
  846. #request_table .request:nth-of-type(odd){
  847. background: #FAD1E3;
  848. }
  849. #request_table .request:nth-of-type(even){
  850. background: #EDC5F4;
  851. }
  852. /* workaround for calendar display issue */
  853. div.sidebar #event_div {
  854. margin-left: -232px;
  855. }
  856. ol {
  857. margin-left: 1em;
  858. }
  859. #forum_search_cat_list {
  860. border: none;
  861. }
  862. #coverCont {
  863. background-color: #FF5AA5;
  864. padding: 5px;
  865. box-shadow: 0 4px 5px 0 rgba(0,0,0,.14),0 1px 10px 0 rgba(0,0,0,.12),0 2px 4px -1px rgba(0,0,0,.2);
  866. }
  867. #coverCont img {
  868. background-color: #FFD2E6;
  869. }
  870. .torrent_info {
  871. font-size: 100%;
  872. font-weight: 100;
  873. }
  874. .group_info > a:last-of-type {
  875. text-decoration: underline;
  876. }
  877. .recent_snatches_images, .recent_uploads_images {
  878. position: relative;
  879. }
  880. .edit_tags_votes {
  881. padding-left: 5px;
  882. }
  883. .row_hl {
  884. background-color: #EED5F1;
  885. }
  886. input.inputtext {
  887. border: none;
  888. border-bottom: 1px solid #AAA;
  889. background-color: rgba(0, 0, 0, 0);
  890. font-size: 13px;
  891. outline: none;
  892. transition: ease-in-out 0.12s;
  893. }
  894. input.inputtext:focus {
  895. border-bottom: 1px solid #E197E5;
  896. }
  897. .bbcode_bar {
  898. background: white;
  899. border: 1px solid #c7c7c7;
  900. border-bottom: none;
  901. }
  902. .bbcode_bar .emoji_box {
  903. background-color: #EEE;
  904. }
  905. .collage_images .collage_image {
  906. margin: 1px;
  907. width: 121px;
  908. display: inline-block;
  909. }
  910. .box, .border, .alertbar, .artist_table, .request_table, .forum_index, #userinfo_minor > li > ul, .permissions table {
  911. box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 3px 1px -2px rgba(0, 0, 0, 0.2), 0 1px 5px 0 rgba(0, 0, 0, 0.12);
  912. }
  913. #userinfo {
  914. box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.14), 0 2px 1px -2px rgba(0, 0, 0, 0.2), 0 0px 5px 0 rgba(0, 0, 0, 0.12);
  915. }
  916. .last_edited {
  917. font-size: 10px;
  918. opacity: 0.7;
  919. }
  920. #comm_badge_tr .badge_icon, #user_badge_edit_tr .badge_icon {
  921. margin-right: 1em;
  922. margin-left: 2px;
  923. }
  924. .store_table .badge_icon {
  925. display: inline-block;
  926. width: 16px;
  927. }
  928. .store_table .badge_icon img {
  929. display: block;
  930. margin-left: auto;
  931. margin-right: auto;
  932. }
  933. .hnr-yes {
  934. color: red;
  935. }
  936. .hnr-no {
  937. color: green;
  938. }
  939. .webm {
  940. max-width: 100%;
  941. }
  942. .point_gift_box p {
  943. margin: 7px 2px 0px;
  944. }
  945. .point_gift_box input[type="text"], .point_gift_box textarea {
  946. width: 100%;
  947. box-sizing: border-box;
  948. }
  949. .dead {
  950. opacity: 0.6;
  951. }
  952. .search_warning {
  953. fill: #E197E5;
  954. }
  955. .tl_reported {
  956. color: red;
  957. }
  958. .tl_snatched {
  959. color: #C35C1C;
  960. }
  961. .tl_leeching {
  962. color: #BD0D0D;
  963. }
  964. .tl_seeding {
  965. color: #068206;
  966. }
  967. caption {
  968. border-bottom: 1px solid #BBB;
  969. font-weight: bold;
  970. }
  971. .tag_parody {
  972. color: #e08e00 !important;
  973. }
  974. .tag_character {
  975. color: #099809 !important;
  976. }
  977. .tag_female {
  978. color: #d51b8a !important;
  979. }
  980. .tag_male {
  981. color: #0000ff !important;
  982. }
  983. .collage_image:hover {
  984. box-shadow: 0px 0px 0px 3px #fbc2e5;
  985. position: relative;
  986. }