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

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