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

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