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.

oppai.scss 19KB

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