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

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