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.

matcha.scss 20KB

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