Oppaitime'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

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174
  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_anime { width: 28px; height: 28px; background: url('images/anime.png') no-repeat center center; }
  7. .cats_movies { width: 28px; height: 28px; background: url('images/movies.png') no-repeat center center; }
  8. .cats_manga { width: 28px; height: 28px; background: url('images/manga.png') no-repeat center center; }
  9. .cats_games { width: 28px; height: 28px; background: url('images/games.png') no-repeat center center; }
  10. .cats_other { width: 28px; height: 28px; background: url('images/other.png') no-repeat center center; }
  11. /* Global */
  12. * {
  13. padding: 0em;
  14. margin: 0em;
  15. }
  16. html {
  17. width: 100%;
  18. }
  19. body {
  20. width: 100%;
  21. background-color: #EDDDE7;
  22. font-family: tahoma, helvetica, sans-serif;
  23. font-size: 8pt;
  24. color: #000;
  25. min-width: 850px;
  26. }
  27. /* Common elements */
  28. a {
  29. text-decoration: none;
  30. border: none;
  31. color: #444;
  32. }
  33. a:hover {
  34. text-decoration: underline;
  35. color: #555;
  36. }
  37. button, input[type=button], input[type=submit] {
  38. background: #EAABED;
  39. 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);
  40. }
  41. button:hover, input[type=button]:hover, input[type=submit]:hover {
  42. background: #E197E5;
  43. }
  44. button:focus, input[type=button]:focus, input[type=submit]:focus {
  45. background: #D48DD8;
  46. }
  47. .spoilerButton {
  48. max-width: 540px;
  49. }
  50. .forum_post .body a:not([href="#"]), .rule_summary a, .wiki_article a, #actual_rules a, .news_post .pad a, .store_table a {
  51. text-decoration: none;
  52. border: none;
  53. color: #862A5E;
  54. }
  55. .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 {
  56. text-decoration: underline;
  57. border: none;
  58. color: #B65A8E;
  59. }
  60. h1,h2,h3,h4 {
  61. margin: 5px 0px;
  62. font-weight: bold;
  63. }
  64. h2 {
  65. text-align: center;
  66. font-size: 12pt;
  67. }
  68. h4 {
  69. font-size: 8pt;
  70. }
  71. p {
  72. margin: 10px 5px;
  73. }
  74. li {
  75. margin: 5px 15px;
  76. }
  77. img {
  78. border: none;
  79. }
  80. /* Styles generated by the BBCode parser */
  81. span.size1 { font-size:0.75em; }
  82. span.size2 { font-size:1em; }
  83. span.size3 { font-size:1.25em; }
  84. span.size4 { font-size:1.5em; }
  85. span.size5 { font-size:1.75em; }
  86. span.size6 { font-size:2em; }
  87. span.size7 { font-size:2.25em; }
  88. span.size8 { font-size:2.5em; }
  89. span.size9 { font-size:2.75em; }
  90. span.size10 { font-size:3em; }
  91. ul.thin { margin:0px 0px 0px 25px; padding:0px; }
  92. ul.thin li { margin:0px 0px; padding:0px; }
  93. /* Layout (Every page) */
  94. #header {
  95. width: 100%;
  96. padding: 0px 0 0 0;
  97. background: #fbc2e5;
  98. margin-bottom: 10px;
  99. }
  100. #content {
  101. margin: auto;
  102. margin-top: 10px;
  103. /* margin-top: 100px; */
  104. width: 90%;
  105. min-width: 872px;
  106. overflow: hidden;
  107. }
  108. #footer {
  109. /* margin-top: 40px; */
  110. margin-top: 10px;
  111. width: 100%;
  112. text-align: center;
  113. padding: 1em 0;
  114. opacity: 0;
  115. transition: ease-in-out 0.3s;
  116. transition-delay: 0.7s;
  117. }
  118. #footer:hover {
  119. opacity: 1;
  120. }
  121. #logo {
  122. width: 620px;
  123. height: 197px;
  124. background: url('images/logo.svg') no-repeat center center;
  125. margin: 0 auto;
  126. }
  127. #logo a {
  128. border: none;
  129. width: 100%;
  130. height: 197px;
  131. display: block;
  132. }
  133. #logo a:hover {
  134. border: none;
  135. }
  136. #menu {
  137. width: 100%;
  138. text-align: center;
  139. background-color: #461640;
  140. font-size: 10pt;
  141. }
  142. #menu > ul {
  143. display: flex;
  144. width: 80%;
  145. margin: 0 auto;
  146. }
  147. #menu > ul > li {
  148. position: relative;
  149. height: 32px;
  150. display: flex;
  151. margin: 0;
  152. flex: 1 1 auto;
  153. }
  154. #menu ul > li > a {
  155. padding: 0.6em 0;
  156. display: inline-block;
  157. width: 100%;
  158. color: #fbc2e5;
  159. transition: ease-in-out 0.1s;
  160. }
  161. #nav_links {
  162. max-width: 40px;
  163. }
  164. #menu ul li a.active {
  165. background-color: #565656;
  166. }
  167. #menu ul li a:hover {
  168. background-color: #7A3572;
  169. text-decoration: none;
  170. }
  171. #menu .nav_dropdown {
  172. background: #461640;
  173. margin-top: 0;
  174. }
  175. .nav_dropdown > div {
  176. position: absolute;
  177. background-color: #461640;
  178. width: 100%;
  179. z-index: 99999;
  180. margin-top: 32px;
  181. left: 0;
  182. }
  183. #nav_links > #links_menu {
  184. width: 120px;
  185. margin-left: -80px;
  186. }
  187. .nav_dropdown > div > a {
  188. display: none;
  189. color: #fbc2e5;
  190. height: 32px;
  191. line-height: 32px;
  192. }
  193. .nav_dropdown:hover > div > a {
  194. display: block;
  195. }
  196. #userinfo {
  197. /* position: absolute;
  198. top: 258px; */
  199. background: #fbc2e5;
  200. color: #444;
  201. padding: 4px 0px;
  202. width: 100%;
  203. text-align: center;
  204. font-size: 8pt;
  205. /* border-bottom: 1px solid #999; */
  206. }
  207. #userinfo img {
  208. margin-top: -5px;
  209. }
  210. #userinfo ul {
  211. display: inline;
  212. margin: 0px 0.8%;
  213. }
  214. #userinfo ul li {
  215. display: inline;
  216. margin: 0 0.1em;
  217. line-height: 20px;
  218. vertical-align: middle;
  219. padding: 0px;
  220. }
  221. #userinfo a {
  222. color: #222;
  223. }
  224. #userinfo a:hover {
  225. text-decoration: underline;
  226. }
  227. #userinfo b a {
  228. font-weight: normal;
  229. font-size: 0.9em;
  230. font-weight: bold;
  231. }
  232. #searchbars {
  233. text-align: center;
  234. background-color: #7A3572;
  235. box-sizing: content-box;
  236. padding: 4px 10%;
  237. border-bottom: 2px solid #FBC2E5;
  238. display: flex;
  239. }
  240. #searchbars > .search_form {
  241. flex: 1 1 auto;
  242. text-align: center;
  243. margin: 0 3px;
  244. }
  245. #searchbars input {
  246. position: relative;
  247. border: 1px solid transparent;
  248. box-sizing: border-box;
  249. padding: 2px 2px 2px 4px;
  250. font-size: 0.9em;
  251. background-color: #e0e0e0;
  252. width: 100%;
  253. color: #444;
  254. }
  255. #searchbars ul {
  256. margin: 0 auto;
  257. display: block;
  258. text-align: center;
  259. }
  260. #searchbars ul li {
  261. display: inline;
  262. margin: 0px 1px;
  263. list-style: none;
  264. position: relative;
  265. }
  266. #searchbars ul li ul {
  267. display: block;
  268. position: absolute;
  269. top: 1em;
  270. left: 0;
  271. z-index: 1000;
  272. background-color: #999;
  273. width: 12em;
  274. margin-top: 12px;
  275. }
  276. #searchbars ul li ul li {
  277. margin: 0 0 0 0;
  278. padding: 0;
  279. display: block;
  280. width: 100%;
  281. }
  282. #searchbars ul li ul li.highlight {
  283. background: #D7D7D7;
  284. }
  285. #searchbars ul li form {
  286. display: inline;
  287. }
  288. #alerts {
  289. /* margin-top: 85px;
  290. margin-bottom: -85px; */
  291. background: #EDDDE7;
  292. /* padding: 10px 0px; */
  293. margin: 10px 0px;
  294. }
  295. #cat-selector ul {
  296. width: 100%;
  297. }
  298. #cat-selector ul li {
  299. display: inline;
  300. width: 12em;
  301. height: 1em;
  302. float: left;
  303. }
  304. .alertbar {
  305. background-color: #fbc2e5;
  306. text-align: center;
  307. color: #444;
  308. font-weight: bold;
  309. font-size: 0.95em;
  310. width: 350px;
  311. margin: 0 auto 0px auto;
  312. padding: 10px;
  313. margin-bottom: 8px;
  314. }
  315. .alertbar.warning {
  316. background-color: #ffe68a;
  317. }
  318. .alertbar.error {
  319. background-color: #ff8a8a;
  320. }
  321. .alertbar a {
  322. color: #555;
  323. text-decoration: underline;
  324. }
  325. .alertbar.modbar a {
  326. margin: 0px 5px;
  327. }
  328. .alertbar a:hover {
  329. color: #777;
  330. text-decoration: none;
  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: #FBC2E5;
  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: #EEE;
  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: #EAEAEA;
  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: #EAABED;
  427. color: #333;
  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: #222;
  444. }
  445. .tags a:hover {
  446. color: #444;
  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: #EEE;
  462. }
  463. td, th {
  464. /* border: 1px solid #666666; */
  465. padding: 5px;
  466. text-align: left;
  467. }
  468. .colhead {
  469. background: #E197E5;
  470. font-weight: bold;
  471. color: #ffffff;
  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: #E197E5;
  492. color: #333;
  493. }
  494. .forum_post .colhead_dark {
  495. background: #F1CDF4;
  496. }
  497. td.label {
  498. font-weight: bold;
  499. text-align: right;
  500. width: 180px;
  501. }
  502. table.slice {
  503. margin-top: -1px;
  504. }
  505. .error_message {
  506. border: 1px solid #666;
  507. padding: 3px 0px 3px 0px;
  508. background-color: #AF2525;
  509. text-align: center;
  510. color: white;
  511. font-weight: bold;
  512. }
  513. .save_message {
  514. border: 1px solid #666;
  515. padding: 3px 0px 3px 0px;
  516. background-color: #F4E649;
  517. text-align: center;
  518. color: #492802;
  519. font-weight: bold;
  520. }
  521. .elem_error {
  522. border: 3px solid #B00D0D;
  523. }
  524. .hidden {
  525. display: none;
  526. }
  527. ul.nobullet {
  528. display: inline-block;
  529. }
  530. /* Layout (home page) */
  531. ul.stats li {
  532. padding: 0px 0px 1px 0px;
  533. }
  534. ul.poll li {
  535. padding: 0px 0px 0px 10px;
  536. margin: 0px;
  537. clear: left;
  538. }
  539. ul.poll li.graph {
  540. margin-bottom: 3px;
  541. padding-left: 20px;
  542. }
  543. /* Layout (Torrents page) */
  544. .show_torrents {
  545. width: 21px;
  546. height: 28px;
  547. background: url('images/show2.png') no-repeat center center;
  548. }
  549. .hide_torrents {
  550. width: 21px;
  551. height: 28px;
  552. background: url('images/hide2.png') no-repeat center center;
  553. }
  554. .show_torrents_link {
  555. border: none;
  556. width: 28px;
  557. height: 28px;
  558. display: block;
  559. cursor: pointer;
  560. }
  561. .filter_torrents {
  562. width: 750px;
  563. margin: auto;
  564. background: #EEE;
  565. }
  566. .filter_torrents .submit {
  567. text-align: right;
  568. padding-top: 5px;
  569. }
  570. .filter_torrents .ft_cat_list {
  571. border-top: 1px solid #AAA;
  572. border-bottom: 1px solid #AAA;
  573. }
  574. #content form.search_form + .torrent_table {
  575. margin-top: 20px;
  576. }
  577. #content form.search_form .submit {
  578. text-align: center;
  579. }
  580. .cat_list tr td {
  581. border: none;
  582. }
  583. .torrent_table tr {
  584. /* vertical-align: top; */
  585. vertical-align: middle;
  586. }
  587. .torrent_table .number_column {
  588. text-align: center;
  589. }
  590. .torrent_table, .torrent_table td {
  591. border: none;
  592. }
  593. .torrent_table tr.torrent, .torrent_table tr.group {
  594. font-weight: bold;
  595. }
  596. .torrent_table tr.group {
  597. background-color: #cfcfcf;
  598. }
  599. .torrent_table tr.group_torrent {
  600. background-color: #fafafa;
  601. }
  602. .torrent_table tr.torrent {
  603. background-color: #ddd;
  604. }
  605. .torrent_table tr.group td.center:first-child {
  606. padding: 3px;
  607. width: 21px;
  608. }
  609. .torrent_table tr.torrent:nth-child(2n) {
  610. background-color: #FAD1E3;
  611. }
  612. .torrent_table tr.torrent:nth-child(2n-1) {
  613. background-color: #EDC5F4;
  614. }
  615. .torrent_table tr.group {
  616. background-color: #F8B8FF;
  617. }
  618. .torrent_table div.tags {
  619. font-weight: normal;
  620. max-width: 500px;
  621. }
  622. .torrent_table tr .center, #collage_table td {
  623. vertical-align: middle;
  624. text-align: center;
  625. }
  626. .group_torrent span {
  627. float: right;
  628. }
  629. .torrent span {
  630. font-weight: normal;
  631. float: right;
  632. }
  633. .nobr {
  634. white-space: nowrap;
  635. }
  636. /* Layout (Forums) */
  637. .last_read {margin-left: 5px; fill: #A9A9A9;}
  638. .colhead_dark .last_read {fill: #DC86E0;}
  639. .unread_locked_sticky{background: url(images/locked_sticky_unread.png) no-repeat center center;}
  640. .read_locked_sticky{background: url(images/locked_sticky_read.png) no-repeat center center;}
  641. .read_sticky{background: url(images/sticky_read.png) no-repeat center center;}
  642. .unread_sticky{background: url(images/sticky_unread.png) no-repeat center center;}
  643. .unread_locked{background: url(images/locked_unread.png) no-repeat center center;}
  644. .read_locked{background: url(images/locked_read.png) no-repeat center center;}
  645. .unread{background: url(images/unread.png) no-repeat center center;}
  646. .read{background: url(images/read.png) no-repeat center center;}
  647. strong.quoteheader {color: #000;}
  648. tr.row:nth-of-type(odd) {
  649. background-color: #E2E2E2;
  650. }
  651. table.forum_post {
  652. margin: 10px 0px;
  653. }
  654. table.forum_post td {
  655. /* border: 1px solid #666; */
  656. border: none;
  657. }
  658. table.forum_unread {
  659. border: 2px solid #F0BBD6;
  660. }
  661. td.avatar {
  662. width: 150px;
  663. padding: 0px;
  664. }
  665. .box_description > div:not(.head) {
  666. max-height: 400px;
  667. overflow-y: scroll;
  668. }
  669. .box_description, table.forum_post td.body {
  670. word-break: break-word;
  671. word-wrap: break-word;
  672. display: inline-block;
  673. }
  674. .box_description {
  675. width: 100%;
  676. }
  677. .thin > table.forum_post td.body {
  678. width: 690px;
  679. }
  680. #torrent_comments table.forum_post td.body {
  681. width: 422px;
  682. }
  683. blockquote {
  684. margin: 10px;
  685. padding: 10px;
  686. /* border: 1px dashed #666; */
  687. border: 1px solid #BBB;
  688. }
  689. /* Layout (Inbox) */
  690. tr.unreadpm {
  691. background-color: #ECC;
  692. }
  693. /* Layout (Permission Page) */
  694. .permission_head {
  695. width: 400px;
  696. margin-left: auto;
  697. margin-right: auto;
  698. }
  699. .permissions {
  700. width: 930px;
  701. margin-left: auto;
  702. margin-right: auto;
  703. }
  704. .permission_container {
  705. float: left;
  706. width: 300px;
  707. padding: 5px;
  708. }
  709. .permission_container input {
  710. margin: 0px 3px 5px 0px;
  711. vertical-align: top;
  712. }
  713. .submit_container {
  714. clear: both;
  715. text-align: right;
  716. }
  717. /* Layout (Invite tree) */
  718. ul .invitetree {
  719. margin: 0px 0px 0px 25px;
  720. }
  721. .invitetree li {
  722. list-style: none;
  723. margin: 10px 2px;
  724. }
  725. /* Layout (User options) */
  726. .user_options .options_list li {
  727. margin: 0;
  728. }
  729. /* Layout (MISC) */
  730. .left_poll {
  731. display: none;
  732. width: 2px;
  733. height: 9px;
  734. float: left;
  735. margin: 0px;
  736. padding: 0px;
  737. }
  738. .center_poll {
  739. height: 9px;
  740. background: #C5D1FF;
  741. border-radius: 4px;
  742. float: left;
  743. margin: 0px;
  744. padding: 0px;
  745. }
  746. .right_poll {
  747. display: none;
  748. width: 2px;
  749. height: 9px;
  750. float: left;
  751. margin: 0px;
  752. padding: 0px;
  753. }
  754. .curtain {
  755. position: fixed;
  756. top: 0%;
  757. left: 0%;
  758. width: 100%;
  759. height: 100%;
  760. background-color: black;
  761. z-index: 1001;
  762. -moz-opacity: 0.8;
  763. opacity: .80;
  764. filter: alpha(opacity=80);
  765. }
  766. .lightbox {
  767. position: fixed;
  768. text-align: center;
  769. top: 5%;
  770. left: 5%;
  771. width: 90%;
  772. height: 90%;
  773. padding: 0px;
  774. z-index: 1002;
  775. overflow: auto;
  776. }
  777. .center {
  778. text-align: center;
  779. }
  780. .spellcheck {
  781. margin: 25px 0;
  782. font-size: 1.25em;
  783. font-weight: bold;
  784. }
  785. tr.torrent .bookmark > a:before {
  786. color: black;
  787. }
  788. tr.torrent .bookmark > a:after {
  789. color: black;
  790. }
  791. .field_div {
  792. margin-bottom: 10px;
  793. }
  794. .edit_changelog textarea {
  795. width: 600px;
  796. }
  797. .brackets {
  798. font-weight: normal;
  799. }
  800. div[class~=tooltipster-content] > a {
  801. color: #AAAAAA;
  802. }
  803. .post_id {
  804. font-weight: normal;
  805. }
  806. /* get rid of extraneous padding in the Top Contributors box */
  807. #request_top_contrib {
  808. border: none;
  809. }
  810. #request_top_contrib tr:first-child th {
  811. border-top: 0;
  812. }
  813. #request_top_contrib tr:last-child td {
  814. border-bottom: 0;
  815. }
  816. #request_top_contrib tr td:first-child,
  817. #request_top_contrib tr th:first-child,
  818. #request_top_contrib tr td:nth-child(2),
  819. #request_top_contrib tr th:nth-child(2) {
  820. border-left: 0;
  821. border-top: 0;
  822. }
  823. #request_top_contrib tr td:last-child,
  824. #request_top_contrib tr th:last-child {
  825. border-right: 0;
  826. }
  827. #requests table.layout.cat_list {
  828. border-bottom: 1px solid #AAA;
  829. border-top: 1px solid #AAA;
  830. }
  831. #requests tr#media_list {
  832. border-bottom: 1px solid #AAA;
  833. border-top: 1px solid #AAA;
  834. }
  835. #request_table {
  836. margin-bottom: 5px;
  837. }
  838. #request_table .request:nth-of-type(odd){
  839. background: #FAD1E3;
  840. }
  841. #request_table .request:nth-of-type(even){
  842. background: #EDC5F4;
  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: #FF5AA5;
  856. padding: 5px;
  857. 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);
  858. }
  859. #coverCont img {
  860. background-color: #FFD2E6;
  861. }
  862. .torrent_info {
  863. font-size: 100%;
  864. font-weight: 100;
  865. }
  866. .group_info > a:last-of-type {
  867. text-decoration: underline;
  868. }
  869. .recent_snatches_images, .recent_uploads_images {
  870. position: relative;
  871. }
  872. .edit_tags_votes {
  873. padding-left: 5px;
  874. }
  875. .row_hl {
  876. background-color: #EED5F1;
  877. }
  878. input.inputtext {
  879. border: none;
  880. border-bottom: 1px solid #AAA;
  881. background-color: rgba(0, 0, 0, 0);
  882. font-size: 13px;
  883. outline: none;
  884. transition: ease-in-out 0.12s;
  885. }
  886. input.inputtext:focus {
  887. border-bottom: 1px solid #E197E5;
  888. }
  889. .bbcode_bar {
  890. background: white;
  891. border: 1px solid #c7c7c7;
  892. border-bottom: none;
  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: 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);
  901. }
  902. #userinfo {
  903. 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);
  904. }
  905. .last_edited {
  906. font-size: 10px;
  907. opacity: 0.7;
  908. }
  909. #comm_badge_tr .badge_icon, #user_badge_edit_tr .badge_icon {
  910. margin-right: 1em;
  911. margin-left: 2px;
  912. }
  913. .store_table .badge_icon {
  914. display: inline-block;
  915. width: 16px;
  916. }
  917. .store_table .badge_icon img {
  918. display: block;
  919. margin-left: auto;
  920. margin-right: auto;
  921. }
  922. .hnr-yes {
  923. color: red;
  924. }
  925. .hnr-no {
  926. color: green;
  927. }
  928. .webm {
  929. max-width: 100%;
  930. }
  931. .point_gift_box p {
  932. margin: 7px 2px 0px;
  933. }
  934. .point_gift_box input[type="text"], .point_gift_box textarea {
  935. width: 100%;
  936. box-sizing: border-box;
  937. }
  938. .dead {
  939. opacity: 0.6;
  940. }
  941. .search_warning {
  942. fill: #E197E5;
  943. }
  944. .tl_reported {
  945. color: red;
  946. }
  947. .tl_snatched {
  948. color: #C35C1C;
  949. }
  950. .tl_leeching {
  951. color: #BD0D0D;
  952. }
  953. .tl_seeding {
  954. color: #068206;
  955. }
  956. caption {
  957. border-bottom: 1px solid #BBB;
  958. font-weight: bold;
  959. }
  960. .staff_post .colhead_dark {
  961. background: #f1849a;
  962. }
  963. .tag_parody {
  964. color: #e08e00 !important;
  965. }
  966. .tag_character {
  967. color: #099809 !important;
  968. }
  969. .tag_female {
  970. color: #d51b8a !important;
  971. }
  972. .tag_male {
  973. color: #0000ff !important;
  974. }
  975. .collage_image:hover {
  976. box-shadow: 0px 0px 0px 3px #fbc2e5;
  977. position: relative;
  978. }