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

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179
  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: #000;
  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. .forum_post.staff_post .colhead_dark {
  498. background: #f1849a;
  499. }
  500. .forum_post.sticky_post {
  501. border: 3px solid #f1849a;
  502. }
  503. td.label {
  504. font-weight: bold;
  505. text-align: right;
  506. width: 180px;
  507. }
  508. table.slice {
  509. margin-top: -1px;
  510. }
  511. .error_message {
  512. border: 1px solid #666;
  513. padding: 3px 0px 3px 0px;
  514. background-color: #AF2525;
  515. text-align: center;
  516. color: white;
  517. font-weight: bold;
  518. }
  519. .save_message {
  520. border: 1px solid #666;
  521. padding: 3px 0px 3px 0px;
  522. background-color: #F4E649;
  523. text-align: center;
  524. color: #492802;
  525. font-weight: bold;
  526. }
  527. .elem_error {
  528. border: 3px solid #B00D0D;
  529. }
  530. .hidden {
  531. display: none;
  532. }
  533. ul.nobullet {
  534. display: inline-block;
  535. }
  536. /* Layout (home page) */
  537. ul.stats li {
  538. padding: 0px 0px 1px 0px;
  539. }
  540. ul.poll li {
  541. padding: 0px 0px 0px 10px;
  542. margin: 0px;
  543. clear: left;
  544. }
  545. ul.poll li.graph {
  546. margin-bottom: 3px;
  547. padding-left: 20px;
  548. }
  549. /* Layout (Torrents page) */
  550. .show_torrents {
  551. width: 21px;
  552. height: 28px;
  553. background: url('images/show2.png') no-repeat center center;
  554. }
  555. .hide_torrents {
  556. width: 21px;
  557. height: 28px;
  558. background: url('images/hide2.png') no-repeat center center;
  559. }
  560. .show_torrents_link {
  561. border: none;
  562. width: 28px;
  563. height: 28px;
  564. display: block;
  565. cursor: pointer;
  566. }
  567. .filter_torrents {
  568. width: 750px;
  569. margin: auto;
  570. background: #EEE;
  571. }
  572. .filter_torrents .submit {
  573. text-align: right;
  574. padding-top: 5px;
  575. }
  576. .filter_torrents .ft_cat_list {
  577. border-top: 1px solid #AAA;
  578. border-bottom: 1px solid #AAA;
  579. }
  580. #content form.search_form + .torrent_table {
  581. margin-top: 20px;
  582. }
  583. #content form.search_form .submit {
  584. text-align: center;
  585. }
  586. .cat_list tr td {
  587. border: none;
  588. }
  589. .torrent_table tr {
  590. /* vertical-align: top; */
  591. vertical-align: middle;
  592. }
  593. .torrent_table .number_column {
  594. text-align: center;
  595. }
  596. .torrent_table, .torrent_table td {
  597. border: none;
  598. }
  599. .torrent_table tr.torrent, .torrent_table tr.group {
  600. font-weight: bold;
  601. }
  602. .torrent_table tr.group {
  603. background-color: #cfcfcf;
  604. }
  605. .torrent_table tr.group_torrent {
  606. background-color: #fafafa;
  607. }
  608. .torrent_table tr.torrent {
  609. background-color: #ddd;
  610. }
  611. .torrent_table tr.group td.center:first-child {
  612. padding: 3px;
  613. width: 21px;
  614. }
  615. .torrent_table tr.torrent:nth-child(2n) {
  616. background-color: #FAD1E3;
  617. }
  618. .torrent_table tr.torrent:nth-child(2n-1) {
  619. background-color: #EDC5F4;
  620. }
  621. .torrent_table tr.group {
  622. background-color: #F8B8FF;
  623. }
  624. .torrent_table div.tags {
  625. font-weight: normal;
  626. max-width: 500px;
  627. }
  628. .torrent_table tr .center, #collage_table td {
  629. vertical-align: middle;
  630. text-align: center;
  631. }
  632. .group_torrent span {
  633. float: right;
  634. }
  635. .torrent span {
  636. font-weight: normal;
  637. float: right;
  638. }
  639. .nobr {
  640. white-space: nowrap;
  641. }
  642. /* Layout (Forums) */
  643. .last_read {margin-left: 5px; fill: #A9A9A9;}
  644. .colhead_dark .last_read {fill: #DC86E0;}
  645. .unread_locked_sticky{background: url(images/locked_sticky_unread.png) no-repeat center center;}
  646. .read_locked_sticky{background: url(images/locked_sticky_read.png) no-repeat center center;}
  647. .read_sticky{background: url(images/sticky_read.png) no-repeat center center;}
  648. .unread_sticky{background: url(images/sticky_unread.png) no-repeat center center;}
  649. .unread_locked{background: url(images/locked_unread.png) no-repeat center center;}
  650. .read_locked{background: url(images/locked_read.png) no-repeat center center;}
  651. .unread{background: url(images/unread.png) no-repeat center center;}
  652. .read{background: url(images/read.png) no-repeat center center;}
  653. strong.quoteheader {color: #000;}
  654. tr.row:nth-of-type(odd) {
  655. background-color: #E2E2E2;
  656. }
  657. table.forum_post {
  658. margin: 10px 0px;
  659. }
  660. table.forum_post td {
  661. /* border: 1px solid #666; */
  662. border: none;
  663. }
  664. table.forum_unread {
  665. border: 2px solid #F0BBD6;
  666. }
  667. td.avatar {
  668. width: 150px;
  669. padding: 0px;
  670. }
  671. .box_description > div:not(.head) {
  672. max-height: 400px;
  673. overflow-y: scroll;
  674. }
  675. .box_description, table.forum_post td.body {
  676. word-break: break-word;
  677. word-wrap: break-word;
  678. display: inline-block;
  679. }
  680. .box_description {
  681. width: 100%;
  682. }
  683. .thin > table.forum_post td.body {
  684. width: 690px;
  685. }
  686. #torrent_comments table.forum_post td.body {
  687. width: 422px;
  688. }
  689. blockquote {
  690. margin: 10px;
  691. padding: 10px;
  692. /* border: 1px dashed #666; */
  693. border: 1px solid #BBB;
  694. }
  695. /* Layout (Inbox) */
  696. tr.unreadpm {
  697. background-color: #ECC;
  698. }
  699. /* Layout (Permission Page) */
  700. .permission_head {
  701. width: 400px;
  702. margin-left: auto;
  703. margin-right: auto;
  704. }
  705. .permissions {
  706. width: 930px;
  707. margin-left: auto;
  708. margin-right: auto;
  709. }
  710. .permission_container {
  711. float: left;
  712. width: 300px;
  713. padding: 5px;
  714. }
  715. .permission_container input {
  716. margin: 0px 3px 5px 0px;
  717. vertical-align: top;
  718. }
  719. .submit_container {
  720. clear: both;
  721. text-align: right;
  722. }
  723. /* Layout (Invite tree) */
  724. ul .invitetree {
  725. margin: 0px 0px 0px 25px;
  726. }
  727. .invitetree li {
  728. list-style: none;
  729. margin: 10px 2px;
  730. }
  731. /* Layout (User options) */
  732. .user_options .options_list li {
  733. margin: 0;
  734. }
  735. /* Layout (MISC) */
  736. .left_poll {
  737. display: none;
  738. width: 2px;
  739. height: 9px;
  740. float: left;
  741. margin: 0px;
  742. padding: 0px;
  743. }
  744. .center_poll {
  745. height: 9px;
  746. background: #C5D1FF;
  747. border-radius: 4px;
  748. float: left;
  749. margin: 0px;
  750. padding: 0px;
  751. }
  752. .right_poll {
  753. display: none;
  754. width: 2px;
  755. height: 9px;
  756. float: left;
  757. margin: 0px;
  758. padding: 0px;
  759. }
  760. .curtain {
  761. position: fixed;
  762. top: 0%;
  763. left: 0%;
  764. width: 100%;
  765. height: 100%;
  766. background-color: black;
  767. z-index: 1001;
  768. -moz-opacity: 0.8;
  769. opacity: .80;
  770. filter: alpha(opacity=80);
  771. }
  772. .lightbox {
  773. position: fixed;
  774. text-align: center;
  775. top: 5%;
  776. left: 5%;
  777. width: 90%;
  778. height: 90%;
  779. padding: 0px;
  780. z-index: 1002;
  781. overflow: auto;
  782. }
  783. .center {
  784. text-align: center;
  785. }
  786. .spellcheck {
  787. margin: 25px 0;
  788. font-size: 1.25em;
  789. font-weight: bold;
  790. }
  791. tr.torrent .bookmark > a:before {
  792. color: black;
  793. }
  794. tr.torrent .bookmark > a:after {
  795. color: black;
  796. }
  797. .field_div {
  798. margin-bottom: 10px;
  799. }
  800. .edit_changelog textarea {
  801. width: 600px;
  802. }
  803. .brackets {
  804. font-weight: normal;
  805. }
  806. div[class~=tooltipster-content] > a {
  807. color: #AAAAAA;
  808. }
  809. .post_id {
  810. font-weight: normal;
  811. }
  812. /* get rid of extraneous padding in the Top Contributors box */
  813. #request_top_contrib {
  814. border: none;
  815. }
  816. #request_top_contrib tr:first-child th {
  817. border-top: 0;
  818. }
  819. #request_top_contrib tr:last-child td {
  820. border-bottom: 0;
  821. }
  822. #request_top_contrib tr td:first-child,
  823. #request_top_contrib tr th:first-child,
  824. #request_top_contrib tr td:nth-child(2),
  825. #request_top_contrib tr th:nth-child(2) {
  826. border-left: 0;
  827. border-top: 0;
  828. }
  829. #request_top_contrib tr td:last-child,
  830. #request_top_contrib tr th:last-child {
  831. border-right: 0;
  832. }
  833. #requests table.layout.cat_list {
  834. border-bottom: 1px solid #AAA;
  835. border-top: 1px solid #AAA;
  836. }
  837. #requests tr#media_list {
  838. border-bottom: 1px solid #AAA;
  839. border-top: 1px solid #AAA;
  840. }
  841. #request_table {
  842. margin-bottom: 5px;
  843. }
  844. #request_table .request:nth-of-type(odd){
  845. background: #FAD1E3;
  846. }
  847. #request_table .request:nth-of-type(even){
  848. background: #EDC5F4;
  849. }
  850. /* workaround for calendar display issue */
  851. div.sidebar #event_div {
  852. margin-left: -232px;
  853. }
  854. ol {
  855. margin-left: 1em;
  856. }
  857. #forum_search_cat_list {
  858. border: none;
  859. }
  860. #coverCont {
  861. background-color: #FF5AA5;
  862. padding: 5px;
  863. 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);
  864. }
  865. #coverCont img {
  866. background-color: #FFD2E6;
  867. }
  868. .torrent_info {
  869. font-size: 100%;
  870. font-weight: 100;
  871. }
  872. .group_info > a:last-of-type {
  873. text-decoration: underline;
  874. }
  875. .recent_snatches_images, .recent_uploads_images {
  876. position: relative;
  877. }
  878. .edit_tags_votes {
  879. padding-left: 5px;
  880. }
  881. .row_hl {
  882. background-color: #EED5F1;
  883. }
  884. input.inputtext {
  885. border: none;
  886. border-bottom: 1px solid #AAA;
  887. background-color: rgba(0, 0, 0, 0);
  888. font-size: 13px;
  889. outline: none;
  890. transition: ease-in-out 0.12s;
  891. }
  892. input.inputtext:focus {
  893. border-bottom: 1px solid #E197E5;
  894. }
  895. .bbcode_bar {
  896. background: white;
  897. border: 1px solid #c7c7c7;
  898. border-bottom: none;
  899. }
  900. .bbcode_bar .emoji_box {
  901. background-color: #EEE;
  902. }
  903. .collage_images .collage_image {
  904. margin: 1px;
  905. width: 121px;
  906. display: inline-block;
  907. }
  908. .box, .border, .alertbar, .artist_table, .request_table, .forum_index, #userinfo_minor > li > ul, .permissions table {
  909. 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);
  910. }
  911. #userinfo {
  912. 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);
  913. }
  914. .last_edited {
  915. font-size: 10px;
  916. opacity: 0.7;
  917. }
  918. #comm_badge_tr .badge_icon, #user_badge_edit_tr .badge_icon {
  919. margin-right: 1em;
  920. margin-left: 2px;
  921. }
  922. .store_table .badge_icon {
  923. display: inline-block;
  924. width: 16px;
  925. }
  926. .store_table .badge_icon img {
  927. display: block;
  928. margin-left: auto;
  929. margin-right: auto;
  930. }
  931. .hnr-yes {
  932. color: red;
  933. }
  934. .hnr-no {
  935. color: green;
  936. }
  937. .webm {
  938. max-width: 100%;
  939. }
  940. .point_gift_box p {
  941. margin: 7px 2px 0px;
  942. }
  943. .point_gift_box input[type="text"], .point_gift_box textarea {
  944. width: 100%;
  945. box-sizing: border-box;
  946. }
  947. .dead {
  948. opacity: 0.6;
  949. }
  950. .search_warning {
  951. fill: #E197E5;
  952. }
  953. .tl_reported {
  954. color: red;
  955. }
  956. .tl_snatched {
  957. color: #C35C1C;
  958. }
  959. .tl_leeching {
  960. color: #BD0D0D;
  961. }
  962. .tl_seeding {
  963. color: #068206;
  964. }
  965. caption {
  966. border-bottom: 1px solid #BBB;
  967. font-weight: bold;
  968. }
  969. .tag_parody {
  970. color: #e08e00 !important;
  971. }
  972. .tag_character {
  973. color: #099809 !important;
  974. }
  975. .tag_female {
  976. color: #d51b8a !important;
  977. }
  978. .tag_male {
  979. color: #0000ff !important;
  980. }
  981. .collage_image:hover {
  982. box-shadow: 0px 0px 0px 3px #fbc2e5;
  983. position: relative;
  984. }