Advertisement
Guest User

Untitled

a guest
Jul 20th, 2018
150
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 119.23 KB | None | 0 0
  1. /*
  2. ANIMATIONS
  3. */
  4.  
  5. @-webkit-keyframes fade-in {
  6. from { opacity: 0; }
  7. to { opacity: 1; }
  8. }
  9. @-moz-keyframes fade-in {
  10. from { opacity: 0; }
  11. to { opacity: 1; }
  12. }
  13. @keyframes fade-in {
  14. from { opacity: 0; }
  15. to { opacity: 1; }
  16. }
  17.  
  18. @-webkit-keyframes grow-in {
  19. from { width: 0%; height: 0%; }
  20. to { width: 100%; height: 100%; }
  21. }
  22. @-moz-keyframes grow-in {
  23. from { width: 0%; height: 0%; }
  24. to { width: 100%; height: 100%; }
  25. }
  26. @keyframes grow-in {
  27. from { width: 0%; height: 0%; }
  28. to { width: 100%; height: 100%; }
  29. }
  30. @-webkit-keyframes expand {
  31. from { height: 0px; }
  32. to { height: 90px; }
  33. }
  34. @-moz-keyframes expand {
  35. from { height: 0px; }
  36. to { height: 90px; }
  37. }
  38. @keyframes expand {
  39. from { height: 0px; }
  40. to { height: 90px; }
  41. }
  42.  
  43.  
  44. /*
  45. GLOBAL
  46. */
  47.  
  48. * {
  49. font-family: Muli, sans-serif;
  50. font-weight: 300;
  51. }
  52.  
  53. a, .header a {
  54. color: rgba(255,255,255,0.8);
  55. border-bottom: 1px solid transparent;
  56. text-decoration: none !important;
  57. transition: all 0.15s ease-in-out;
  58. }
  59.  
  60. a:hover {
  61. color: #FFF;
  62. border-bottom: 1px solid #FFF;
  63. }
  64.  
  65. body {
  66. background-repeat: repeat !important;
  67. background-attachment: fixed !important;
  68. background-position: center center !important;
  69. background-size: cover !important;
  70. }
  71.  
  72. body::after {
  73. content: "";
  74. display: block;
  75. position: fixed;
  76. top: 0px;
  77. left: 0px;
  78. width: 100%;
  79. height: 100%;
  80. background-color: rgba(0,0,0,0.6);
  81. z-index: -1;
  82. }
  83.  
  84. .list-container {
  85. background-color: transparent !important;
  86. margin-bottom: 50px;
  87. }
  88.  
  89. .header, .list-container, .cover-block, .status-menu-container, .list-unit {
  90. width: 100%;
  91. border: none;
  92. }
  93.  
  94. .list-block {
  95. width: 80%;
  96. margin: 0px auto;
  97. }
  98.  
  99. .list-table {
  100. display: table-row;
  101. }
  102.  
  103. .cover-block .image-container .btn-list-setting {
  104. position: fixed !important;
  105. z-index: 9999;
  106. }
  107.  
  108.  
  109. /*
  110. HEADER/NAVBAR
  111. */
  112.  
  113. .search-container {
  114. display: none;
  115. }
  116.  
  117. .header {
  118. position: fixed;
  119. top: 0px;
  120. left: 0px;
  121. width: 100%;
  122. height: 0px;
  123. z-index: 9999;
  124. }
  125.  
  126. .header .header-title {
  127. top: 5px;
  128. left: 57px;
  129. padding: 12px;
  130. background-position: center center;
  131. background-size: auto 24px;
  132. width: 170px;
  133. height: 31px;
  134. opacity: 0.8;
  135. }
  136.  
  137. .header .header-title:hover {
  138. opacity: 1;
  139. }
  140.  
  141. .header .header-menu.other {
  142. top: 0px;
  143. padding: 8px;
  144. }
  145.  
  146. .header .header-menu .btn-menu {
  147. color: rgba(255,255,255,0.8);
  148. margin-top: -9px;
  149. margin-right: 10px;
  150. }
  151.  
  152. .header .header-menu.other .btn-menu, .header .header-menu .header-info {
  153. font-size: 12px;
  154. margin-top: 0px;
  155. text-shadow: 0px 3px 3px #000;
  156. }
  157.  
  158. .header .header-menu .list-menu {
  159. top: 58px;
  160. right: 0px;
  161. width: 125px;
  162. height: 32px;
  163. background-color: #000;
  164. border: 0px solid transparent;
  165. border-top: 1px solid #FFF;
  166. box-shadow: 0px 5px 10px rgba(0,0,0,0.4);
  167. z-index: 9999;
  168. opacity: 0;
  169. }
  170.  
  171. .header .header-menu .list-menu[style^="display: block;"] {
  172. -webkit-animation: fade-in 0.15s forwards ease-in;
  173. -moz-animation: fade-in 0.15s forwards ease-in;
  174. animation: fade-in 0.15s forwards ease-in;
  175. }
  176.  
  177. .header .header-menu .list-menu[style^="display: block;"]::after {
  178. content: "";
  179. display: block;
  180. width: 8px;
  181. height: 8px;
  182. background-color: #000;
  183. position: relative;
  184. bottom: 36px;
  185. left: 50%;
  186. border-top: 1px solid #FFF;
  187. border-left: 1px solid #FFF;
  188. -webkit-transform: rotate(45deg);
  189. -moz-transform: rotate(45deg);
  190. transform: rotate(45deg);
  191. }
  192.  
  193. .header .header-menu .list-menu .icon-menu svg.icon {
  194. fill: rgba(255,255,255,0.8);
  195. top: 5px;
  196. transition: fill 0.15s ease-in-out;
  197. }
  198.  
  199. .header .header-menu .list-menu .icon-menu .text {
  200. color: rgba(255,255,255,0.8);
  201. font-size: 11px;
  202. text-shadow: 0px 3px 3px #000;
  203. top: 7px;
  204. left: 42px;
  205. white-space: nowrap;
  206. transition: color 0.15s ease-in-out;
  207. }
  208.  
  209. .header .header-menu .list-menu .icon-menu:hover {
  210. background-color: transparent;
  211. border-bottom: 1px solid transparent;
  212. }
  213.  
  214. .header .header-menu .list-menu .icon-menu:hover svg.icon {
  215. fill: #FFF;
  216. }
  217.  
  218. .header .header-menu .list-menu .icon-menu:hover .text {
  219. color: #FFF;
  220. }
  221.  
  222. .status-menu-container {
  223. padding-top: 2px;
  224. height: 56px;
  225. background-color: rgba(0,0,0,0.8);
  226. box-shadow: 0px 5px 5px rgba(0,0,0,0.4);
  227. z-index: 9998;
  228. }
  229.  
  230. .status-menu-container .status-menu {
  231. border-spacing: 0px;
  232. width: 70%;
  233. text-align: center;
  234. }
  235.  
  236. .status-menu-container .status-menu .status-button {
  237. color: rgba(255,255,255,0.8);
  238. display: inline-block;
  239. margin: 0px 3%;
  240. padding: 16px 0px 17px 0px;
  241. text-shadow: 0px 3px 3px #000;
  242. font-size: 18px;
  243. }
  244.  
  245. .status-menu-container .status-menu .status-button:hover, .status-menu-container .status-menu .status-button.on {
  246. color: rgba(255,255,255,1);
  247. border-bottom: 1px solid #FFF;
  248. }
  249.  
  250. .status-menu-container .status-menu .status-button::after {
  251. display: none;
  252. }
  253.  
  254.  
  255. /*
  256. NO USER PLACEHOLDER PROFILE
  257. */
  258.  
  259. .header a[href="/register.php"]::before {
  260. content: "";
  261. display: block;
  262. width: 58px;
  263. height: 58px;
  264. position: fixed;
  265. top: 0px;
  266. left: 0px;
  267. background: url(http://myanimelist.net/images/questionmark_50.gif) no-repeat center center;
  268. background-size: 100% 100%;
  269. z-index: 9998;
  270. opacity: 0.8;
  271. transition: opacity 0.15s ease-in-out;
  272. }
  273.  
  274. .header a[href="/register.php"]:hover::before {
  275. opacity: 1;
  276. }
  277.  
  278.  
  279. /*
  280. LIST MENU
  281. */
  282.  
  283. .list-menu-float {
  284. top: -1px;
  285. left: 0px;
  286. width: 58px;
  287. height: 58px;
  288. border: none;
  289. z-index: 9999;
  290. overflow: hidden;
  291. transition: height 0.3s ease-in-out;
  292. }
  293.  
  294. .list-menu-float:hover {
  295. height: 100%;
  296. overflow: visible;
  297. }
  298.  
  299. .list-menu-float .icon-menu {
  300. width: 58px;
  301. height: 58px;
  302. background-color: #000;
  303. box-shadow: 0px 5px 10px rgba(0,0,0,0.4);
  304. }
  305.  
  306. .list-menu-float::after {
  307. content: "";
  308. width: 8px;
  309. height: 8px;
  310. background-color: #000;
  311. position: absolute;
  312. top: 54px;
  313. left: 25px;
  314. border-top: 1px solid #FFF;
  315. border-left: 1px solid #FFF;
  316. -webkit-transform: rotate(45deg);
  317. -moz-transform: rotate(45deg);
  318. transform: rotate(45deg);
  319. pointer-events: none;
  320. opacity: 0;
  321. transition: opacity 0.15s ease-in-out;
  322. }
  323.  
  324. .list-menu-float:hover::after {
  325. opacity: 1;
  326. }
  327.  
  328. .list-menu-float .icon-menu.profile {
  329. opacity: 0.8;
  330. transition: 0.15s ease-in-out;
  331. }
  332.  
  333. .list-menu-float:hover .icon-menu.profile {
  334. opacity: 1;
  335. border-bottom: 1px solid #FFF;
  336. }
  337.  
  338. .list-menu-float .icon-menu svg {
  339. left: 19px !important;
  340. top: 19px !important;
  341. }
  342.  
  343. .list-menu-float .icon-menu svg.icon {
  344. fill: rgba(255,255,255,0.8);
  345. transition: all 0.15s ease-in-out;
  346. }
  347.  
  348. .list-menu-float .icon-menu:not(.profile) {
  349. border-bottom: 0px solid transparent !important;
  350. border-right: 1px solid transparent;
  351. width: 58px;
  352. height: 0px;
  353. opacity: 0;
  354. transition: 0.15s ease-in-out;
  355. }
  356.  
  357. .list-menu-float:hover .icon-menu:not(.profile) {
  358. opacity: 1;
  359. height: 58px;
  360. }
  361.  
  362. .list-menu-float .icon-menu:hover:not(.profile) {
  363. border-right: 1px solid #FFF;
  364. background-color: #000;
  365. width: 200px;
  366. }
  367.  
  368. .list-menu-float .icon-menu .text {
  369. width: 0px;
  370. height: 58px;
  371. top: 18px;
  372. left: 58px;
  373. transition: 0.15s ease-in-out;
  374. }
  375.  
  376. .list-menu-float .icon-menu:hover .text {
  377. width: 142px;
  378. height: 58px;
  379. top: 18px;
  380. left: 58px;
  381. }
  382.  
  383. .list-menu-float .icon-menu.setting .text {
  384. top: 0px;
  385. left: 0px;
  386. width: 58px;
  387. height: 58px;
  388. transition: 0.15s ease-in-out;
  389. }
  390.  
  391. .list-menu-float .icon-menu.setting:hover .text {
  392. top: 0px;
  393. left: 0px;
  394. width: 200px;
  395. height: 58px;
  396. }
  397.  
  398. .list-menu-float .icon-menu.setting .text .link-list-setting {
  399. top: 0px;
  400. left: 0px;
  401. width: 0px;
  402. height: 58px;
  403. padding-left: 58px;
  404. transition: 0.15s ease-in-out;
  405. }
  406.  
  407. .list-menu-float .icon-menu.setting:hover .text .link-list-setting {
  408. border-bottom: 0px solid transparent !important;
  409. background-color: transparent !important;
  410. width: 142px;
  411. height: 58px;
  412. top: 0px;
  413. left: 0px;
  414. }
  415.  
  416. .list-menu-float .icon-menu .link-style-setting {
  417. display: none !important
  418. }
  419.  
  420.  
  421. /*
  422. COVER IMAGE
  423. */
  424.  
  425. .cover-block .image-container {
  426. position: relative;
  427. padding-top: 0px;
  428. width: 100%;
  429. max-height: 400px;
  430. display: flex;
  431. flex-direction: column;
  432. justify-content: center;
  433. overflow: hidden;
  434. background-color: rgba(0,0,0,0.71);
  435. }
  436.  
  437. .cover-block .image-container::after {
  438. content: "";
  439. position: absolute;
  440. top: 0px;
  441. left: 0px;
  442. width: 100%;
  443. height: 400px;
  444. background-color: rgba(0,0,0,0.3);
  445. }
  446.  
  447. .cover-block .image-container img {
  448. max-width: 100%;
  449. object-fit: cover;
  450. height: 600px;
  451. }
  452.  
  453.  
  454. /*
  455. LIST STATUS
  456. */
  457.  
  458. .list-unit .list-status-title .text, .list-table .list-table-header .header-title.number, .list-table .list-table-header .header-title.image, .list-table .list-table-header .header-title.status {
  459. display: none;
  460. }
  461.  
  462. .list-unit .list-status-title {
  463. margin: 115px 0px 121px 0px;
  464. display: block;
  465. width: 450px;
  466. background-color: transparent;
  467. position: absolute;
  468. right: 10%;
  469. }
  470.  
  471. .list-table > tbody:not(.list-item) {
  472. margin: 100px 0px;
  473. display: block;
  474. width: 80%;
  475. background-color: transparent;
  476. }
  477.  
  478. .list-table .list-table-header .header-title {
  479. background: transparent;
  480. border-bottom: none;
  481. color: rgba(255,255,255,0.8);
  482. }
  483.  
  484. .list-table .list-table-header a, .list-unit .list-status-title .stats a {
  485. color: rgba(255,255,255,0.8) !important;
  486. font-size: 22px !important;
  487. padding: 15px 50px 20px;
  488. margin: 0px 10px;
  489. text-shadow: 0px 3px 3px #000;
  490. border: 2px solid rgba(0,0,0,0);
  491. box-shadow: 0px 5px 10px rgba(0,0,0,0);
  492. transition: all 0.15s !important;
  493. }
  494.  
  495. .list-table .list-table-header a:hover, .list-unit .list-status-title .stats a:hover {
  496. color: rgba(255,255,255,1) !important;
  497. border: 2px solid #FFF !important;
  498. box-shadow: 0px 5px 10px rgba(0,0,0,0.4);
  499. }
  500.  
  501. .list-table .list-table-header .header-title .sort-icon {
  502. color: transparent;
  503. width: 100%;
  504. height: 100%;
  505. position: absolute;
  506. left: -2px;
  507. top: -2px;
  508. border: 2px solid #FFF;
  509. text-shadow: none;
  510. box-shadow: 0px 5px 10px rgba(0,0,0,0.4);
  511. transition: all 0.15s;
  512. }
  513.  
  514. .list-table .list-table-header a:hover .sort-icon {
  515. box-shadow: 0px 5px 10px rgba(0,0,0,0);
  516. }
  517.  
  518. .list-unit .list-stats {
  519. background-color: #000;
  520. width: 100%;
  521. height: 32px !important;
  522. line-height: 32px;
  523. color: #FFF;
  524. font-size: 11px;
  525. text-align: center;
  526. border-top: 1px solid #FFF;
  527. position: absolute;
  528. left: 0px;
  529. margin-top: 0px;
  530. box-shadow: 0px 5px 10px rgba(0,0,0,0.4);
  531. z-index: 9998;
  532. overflow: visible !important;
  533. opacity: 0;
  534. }
  535.  
  536. .list-unit .list-stats[style^="display: block;"] {
  537. -webkit-animation: fade-in 0.15s forwards ease-in;
  538. -moz-animation: fade-in 0.15s forwards ease-in;
  539. animation: fade-in 0.15s forwards ease-in;
  540. }
  541.  
  542. .status-menu-container.fixed + .list-block .list-unit .list-stats {
  543. position: fixed;
  544. top: 58px;
  545. }
  546.  
  547. .list-unit .list-stats::after {
  548. content: "";
  549. display: block;
  550. width: 8px;
  551. height: 8px;
  552. background-color: #000;
  553. position: relative;
  554. bottom: 37px;
  555. left: 50%;
  556. border-top: 1px solid #FFF;
  557. border-left: 1px solid #FFF;
  558. -webkit-transform: rotate(45deg);
  559. -moz-transform: rotate(45deg);
  560. transform: rotate(45deg);
  561. }
  562.  
  563. #fancybox-wrap {
  564. position: fixed !important;
  565. top: 80px !important;
  566. }
  567.  
  568. #fancybox-overlay {
  569. background-color: #000 !important;
  570. z-index: 9998;
  571. }
  572.  
  573. #fancybox-overlay[style^="display: block;"] {
  574. -webkit-animation: grow-in 0.25s ease-in forwards;
  575. -moz-animation: grow-in 0.25s ease-in forwards;
  576. animation: grow-in 0.25s ease-in forwards;
  577. }
  578.  
  579. #advanced-options {
  580. position: fixed;
  581. top: 80px;
  582. background-color: rgba(0,0,0,0.8);
  583. border: 1px solid #FFF;
  584. color: #FFF;
  585. opacity: 0;
  586. box-shadow: 0px 3px 15px rgba(0,0,0,0.4);
  587. z-index: 9999;
  588. }
  589.  
  590. #advanced-options[style^="display: block;"] {
  591. -webkit-animation: fade-in 0.2s ease-in 0.25s forwards;
  592. -moz-animation: fade-in 0.2s ease-in 0.25s forwards;
  593. animation: fade-in 0.2s ease-in 0.25s forwards;
  594. }
  595.  
  596. #advanced-options .advanced-options-header .description {
  597. float: right;
  598. }
  599.  
  600. #advanced-options input, #advanced-options select {
  601. font-size: 11px;
  602. height: 32px;
  603. }
  604.  
  605. #advanced-options input[type="text"] {
  606. padding: 0px 4px;
  607. }
  608.  
  609. #advanced-options .sort-widget input[type="radio"] + label {
  610. border-radius: 0px;
  611. position: relative;
  612. top: 1px;
  613. height: 20px;
  614. border: 1px solid #CCC;
  615. }
  616.  
  617. #advanced-options .sort-widget input[type="radio"]:checked + label {
  618. background-color: #000;
  619. border: 1px solid #FFF;
  620. }
  621.  
  622. #advanced-options .btn-apply, #advanced-options .btn-clear {
  623. background-color: #FFF;
  624. border: 1px solid #CCC;
  625. border-radius: 0px;
  626. color: #9B9B9B;
  627. transition: all 0.15s;
  628. }
  629.  
  630. #advanced-options .btn-apply:hover, #advanced-options .btn-clear:hover {
  631. background-color: #000;
  632. border: 1px solid #FFF;
  633. color: #FFF;
  634. }
  635.  
  636. #advanced-options select:hover {
  637. cursor: pointer;
  638. }
  639.  
  640. #advanced-options select:disabled:hover {
  641. cursor: no-drop;
  642. }
  643.  
  644. #fancybox-close {
  645. border-bottom: 0px solid transparent !important;
  646. }
  647.  
  648. #advanced-options #fancybox-close {
  649. top: 0px !important;
  650. right: 0px !important;
  651. background: none !important;
  652. border-bottom: 0px solid transparent !important;
  653. }
  654.  
  655. #advanced-options #fancybox-close::before {
  656. content: "";
  657. display: block;
  658. width: 4px;
  659. height: 24px;
  660. background-color: #CCC;
  661. border-radius: 2px;
  662. -webkit-transform: rotate(45deg);
  663. -moz-transform: rotate(45deg);
  664. transform: rotate(45deg);
  665. position: absolute;
  666. top: 4px;
  667. right: 14px;
  668. transition: background-color 0.15s ease-in-out;
  669. }
  670.  
  671. #advanced-options #fancybox-close::after {
  672. content: "";
  673. display: block;
  674. width: 4px;
  675. height: 24px;
  676. background-color: #CCC;
  677. border-radius: 2px;
  678. -webkit-transform: rotate(-45deg);
  679. -moz-transform: rotate(-45deg);
  680. transform: rotate(-45deg);
  681. position: absolute;
  682. top: 4px;
  683. right: 14px;
  684. transition: background-color 0.15s ease-in-out;
  685. }
  686.  
  687. #advanced-options #fancybox-close:hover::before, #advanced-options #fancybox-close:hover::after {
  688. background-color: #FFF;
  689. }
  690.  
  691.  
  692. /*
  693. LIST CARDS
  694. */
  695.  
  696. .list-item, .list-item .list-table-data, .list-item .list-table-data .data.image, .list-item .list-table-data .data.image .image {
  697. width: 194px;
  698. height: 281px;
  699. border: none;
  700. }
  701.  
  702. .list-table .list-table-data .data.number, .list-table .list-table-data .data.status, .list-table .list-table-data .data.image ~ td {
  703. position: absolute;
  704. }
  705.  
  706. .list-table .list-table-data .data.image a {
  707. width: 100% !important;
  708. height: 100% !important;
  709. background-size: 100% 100% !important;
  710. background-position: center center !important;
  711. border-bottom: 0px solid transparent !important;
  712. }
  713.  
  714. .list-table .list-table-data .data.image a::before {
  715. height: 100% !important;
  716. width: 100% !important;
  717. background-size: cover !important;
  718. display: block !important;
  719. content: "" !important;
  720. position: absolute !important;
  721. }
  722.  
  723. .list-table > tbody:nth-of-type(2n+1) {
  724. background-color: transparent;
  725. }
  726.  
  727. .list-item {
  728. margin: -15.5px -7.5px;
  729. position: relative;
  730. float: left;
  731. -webkit-perspective: 600px;
  732. -moz-perspective: 600px;
  733. -o-perspective: 600px;
  734. -ms-perspective: 600px;
  735. perspective: 600px;
  736. z-index: 1;
  737. -webkit-transform: translateZ(0px);
  738. -moz-transform: translateZ(0px);
  739. -o-transform: translateZ(0px);
  740. -ms-transform: translateZ(0px);
  741. transform: translateZ(0px);
  742. transition: all 0.4s ease-in-out;
  743. }
  744.  
  745. .list-item:hover {
  746. -webkit-transform: translateZ(1px);
  747. -moz-transform: translateZ(1px);
  748. -o-transform: translateZ(1px);
  749. -ms-transform: translateZ(1px);
  750. transform: translateZ(1px);
  751. z-index: 100;
  752. }
  753.  
  754. .list-item .list-table-data {
  755. display: block;
  756. -webkit-transform: rotateY(180deg) rotateX(0deg) scale(0.8);
  757. -moz-transform: rotateY(180deg) rotateX(0deg) scale(0.8);
  758. -o-transform: rotateY(180deg) rotateX(0deg) scale(0.8);
  759. -ms-transform: rotateY(180deg) rotateX(0deg) scale(0.8);
  760. transform: rotateY(180deg) rotateX(0deg) scale(0.8);
  761. background-color: transparent;
  762. box-shadow: 0px 3px 15px rgba(0,0,0,0.4);
  763. -webkit-transition: 0.4s ease-in-out;
  764. -moz-transition: transform 0.4s ease-in-out, background-color 0.2s 0.1s ease-in-out;
  765. -o-transition: transform 0.4s ease-in-out, background-color 0.2s 0.1s ease-in-out;
  766. transition: transform 0.4s ease-in-out, background-color 0.2s 0.1s ease-in-out;
  767. }
  768.  
  769. .list-item:hover .list-table-data {
  770. -webkit-transform: rotateY(0deg) rotateX(0deg) scale(1);
  771. -moz-transform: rotateY(0deg) rotateX(0deg) scale(1);
  772. -o-transform: rotateY(0deg) rotateX(0deg) scale(1);
  773. -ms-transform: rotateY(0deg) rotateX(0deg) scale(1);
  774. transform: rotateY(0deg) rotateX(0deg) scale(1);
  775. background-color: #FFF;
  776. }
  777.  
  778. .list-table .list-table-data .data {
  779. padding: 0px;
  780. }
  781.  
  782. .list-item .data {
  783. opacity: 0;
  784. transition: opacity 0.2s 0.1s;
  785. }
  786.  
  787. .list-item:hover .data {
  788. opacity: 1;
  789. }
  790.  
  791. .list-item .data.image {
  792. -moz-transform: scaleX(-1);
  793. -o-transform: scaleX(-1);
  794. -webkit-transform: scaleX(-1);
  795. transform: scaleX(-1);
  796. opacity: 1;
  797. }
  798.  
  799. .list-item:hover .data.image {
  800. opacity: 0.15;
  801. }
  802.  
  803. .list-item .data.status {
  804. left: 0px;
  805. top: 0px;
  806. background-color: transparent !important;
  807. }
  808.  
  809. .list-item .data.status.watching::after {
  810. content: "Watching...";
  811. display: block;
  812. font-size: 14px;
  813. color: #000;
  814. position: absolute;
  815. top: 197.5px;
  816. left: 0px;
  817. border-left: 3px solid #2db039;
  818. padding-left: 11px;
  819. white-space: nowrap;
  820. }
  821.  
  822. .list-item .data.status.reading::after {
  823. content: "Reading...";
  824. display: block;
  825. font-size: 14px;
  826. color: #000;
  827. position: absolute;
  828. top: 197.5px;
  829. left: 0px;
  830. border-left: 3px solid #2db039;
  831. padding-left: 11px;
  832. white-space: nowrap;
  833. }
  834.  
  835. .list-item .data.status.completed::after {
  836. content: "Completed!";
  837. display: block;
  838. font-size: 14px;
  839. color: #000;
  840. position: absolute;
  841. top: 197.5px;
  842. left: 0px;
  843. border-left: 3px solid #26448f;
  844. padding-left: 11px;
  845. white-space: nowrap;
  846. }
  847.  
  848. .list-item .data.status.onhold::after {
  849. content: "On hold...";
  850. display: block;
  851. font-size: 14px;
  852. color: #000;
  853. position: absolute;
  854. top: 197.5px;
  855. left: 0px;
  856. border-left: 3px solid #f1c83e;
  857. padding-left: 11px;
  858. white-space: nowrap;
  859. }
  860.  
  861. .list-item .data.status.dropped::after {
  862. content: "Dropped.";
  863. display: block;
  864. font-size: 14px;
  865. color: #000;
  866. position: absolute;
  867. top: 197.5px;
  868. left: 0px;
  869. border-left: 3px solid #a12f31;
  870. padding-left: 11px;
  871. white-space: nowrap;
  872. }
  873.  
  874. .list-item .data.status.plantowatch::after, .list-item .data.status.plantoread::after {
  875. content: "Planning to!";
  876. display: block;
  877. font-size: 14px;
  878. color: #000;
  879. position: absolute;
  880. top: 197.5px;
  881. left: 0px;
  882. border-left: 3px solid #c3c3c3;
  883. padding-left: 11px;
  884. white-space: nowrap;
  885. }
  886.  
  887. .all_anime .list-item .data.status.plantowatch ~ .data.image a, .all_anime .list-item .data.status.plantoread ~ .data.image a {
  888. -webkit-filter: grayscale(1);
  889. filter: grayscale(1);
  890. }
  891.  
  892. .list-item .data.number {
  893. border-bottom: 0px solid transparent;
  894. left: 0px;
  895. bottom: 0px;
  896. font-size: 9px;
  897. font-weight: bold;
  898. padding: 4px 6px;
  899. }
  900.  
  901. .list-item .data.title {
  902. left: 1px;
  903. top: 0px;
  904. width: 90%;
  905. padding: 8px !important;
  906. border-bottom: 0px solid transparent;
  907. }
  908.  
  909. .list-item .data.title > a::after {
  910. content: "";
  911. display: block;
  912. width: 90%;
  913. height: 1px;
  914. border-bottom: 1px solid #999;
  915. position: relative;
  916. top: 6px;
  917. left: 5px;
  918. }
  919.  
  920. .list-item .data.title a {
  921. color: rgba(0,0,0,0.5);
  922. border-bottom: 0px solid transparent !important;
  923. }
  924.  
  925. .list-item .data.title a:hover {
  926. color: rgba(0,0,0,1);
  927. }
  928.  
  929. .list-table .list-table-data .data.title .link {
  930. font-size: 13px;
  931. line-height: 20px;
  932. }
  933.  
  934. .list-item .data.title .content-status, .list-item .data.title .rewatching, .list-item .data.title .rereading {
  935. position: absolute;
  936. left: -1px;
  937. top: 232px;
  938. z-index: 1;
  939. width: 164px;
  940. height: 20px;
  941. text-align: center;
  942. font-size: 11px !important;
  943. color: #000 !important;
  944. padding: 1px 8px 3px 8px;
  945. }
  946.  
  947. .list-item .data.title .content-status::before, .list-item .data.title .rewatching::before, .list-item .data.title .rereading::before {
  948. width: 110px;
  949. height: 24px;
  950. content: "";
  951. display: block;
  952. position: absolute;
  953. top: -2px;
  954. left: 36px;
  955. z-index: -1;
  956. background-color: #FFE100;
  957. border-bottom: 2px solid #FFD000;
  958. border-top-left-radius: 4px;
  959. border-top-right-radius: 4px;
  960. }
  961.  
  962. .list-item .data.title .rewatching {
  963. left: 32px;
  964. }
  965.  
  966. .list-table .list-table-data .data.title .add-edit-more {
  967. color: transparent;
  968. }
  969.  
  970. .list-table .list-table-data .data.title .add-edit-more .add {
  971. position: absolute;
  972. top: 231px;
  973. right: 4px;
  974. padding: 4px;
  975. }
  976.  
  977. .list-table .list-table-data .data.title .add-edit-more .edit {
  978. position: absolute;
  979. top: 231px;
  980. right: 4px;
  981. padding: 4px;
  982. z-index: 1;
  983. }
  984.  
  985. .list-table .list-table-data .data.title .add-edit-more .edit a {
  986. font-size: 11px;
  987. font-weight: bold;
  988. }
  989.  
  990. .list-table .list-table-data .data.title .add-edit-more .more {
  991. top: 9px;
  992. left: -21px;
  993. padding: 2px;
  994. width: 50px;
  995. }
  996.  
  997. .list-table .list-table-data .data.title .add-edit-more .more a {
  998. color: transparent !important;
  999. white-space: nowrap;
  1000. font-size: 12px;
  1001. padding: 2px 0px;
  1002. }
  1003.  
  1004. .list-table .list-table-data .data.title .add-edit-more .more a::after {
  1005. content: "show/hide details";
  1006. font-size: 13px;
  1007. font-weight: bold;
  1008. pointer-events: none;
  1009. color: rgba(0,0,0,0.5);
  1010. position: center;
  1011. right: 6px;
  1012. bottom: 1px;
  1013. white-space: nowrap;
  1014. transition: color 0.15s ease-in-out;
  1015. }
  1016.  
  1017. .list-table .list-table-data .data.title .add-edit-more .more a:hover::after {
  1018. color: rgba(0,0,0,1);
  1019. }
  1020.  
  1021. .list-item .more-info {
  1022. position: absolute;
  1023. top: 98px;
  1024. left: 10px;
  1025. width: 160px;
  1026. height: 0px;
  1027. overflow-x: hidden;
  1028. overflow-y: scroll;
  1029. border-bottom: 0px solid transparent;
  1030. background-color: transparent;
  1031. opacity: 0;
  1032. -webkit-transform: rotateY(180deg) translateZ(1px) scale(0.8);
  1033. -moz-transform: rotateY(180deg) translateZ(1px) scale(0.8);
  1034. -o-transform: rotateY(180deg) translateZ(1px) scale(0.8);
  1035. -ms-transform: rotateY(180deg) translateZ(1px) scale(0.8);
  1036. transform: rotateY(180deg) translateZ(1px) scale(0.8);
  1037. transition: transform 0.4s ease-in-out, background-color 0.4s ease-in-out, opacity 0.2s 0.2s;
  1038. }
  1039.  
  1040. .list-item .more-info[style="display: block;"], .list-item .more-info[style="display: table-row;"] {
  1041. -webkit-animation: expand 0.15s forwards ease-in;
  1042. -moz-animation: expand 0.15s forwards ease-in;
  1043. animation: expand 0.15s forwards ease-in;
  1044. }
  1045.  
  1046. .list-item:hover .more-info {
  1047. background-color: #aaaaaa;
  1048. -webkit-transform: rotateY(0deg) translateZ(1px);
  1049. -moz-transform: rotateY(0deg) translateZ(1px);
  1050. -o-transform: rotateY(0deg) translateZ(1px);
  1051. -ms-transform: rotateY(0deg) translateZ(1px);
  1052. transform: rotateY(0deg) translateZ(1px);
  1053. opacity: 1;
  1054. }
  1055.  
  1056. .list-item .more-info a {
  1057. color: rgba(0,0,0,0.5);
  1058. font-weight: bold;
  1059. border-bottom: 0px solid transparent !important;
  1060. }
  1061.  
  1062. .list-item .more-info a:hover {
  1063. color: rgba(0,0,0,1);
  1064. }
  1065.  
  1066. .list-item .more-info td {
  1067. line-height: 20px;
  1068. }
  1069.  
  1070. .list-item .data.score {
  1071. top: 125px;
  1072. left: 14px;
  1073. color: #FFF;
  1074. font-size: 14px;
  1075. background-color: #000;
  1076. width: 40px;
  1077. height: 40px;
  1078. border-radius: 20px;
  1079. border-bottom: 0px solid transparent;
  1080. z-index: 2;
  1081. }
  1082.  
  1083. .list-item .data.score a {
  1084. color: #FFF !important;
  1085. font-size: 16px !important;
  1086. position: relative;
  1087. top: 8px;
  1088. border-bottom: 0px solid transparent !important
  1089. }
  1090.  
  1091. .list-item .data.score a::after {
  1092. content: "/ 10";
  1093. display: block;
  1094. position: absolute;
  1095. top: 2px;
  1096. left: 31px;
  1097. color: #000;
  1098. font-size: 12px;
  1099. font-weight: 300;
  1100. white-space: nowrap;
  1101. }
  1102.  
  1103. .list-item .data.score a + select {
  1104. position: relative;
  1105. top: 8px;
  1106. }
  1107.  
  1108. .list-item .data.type {
  1109. top: 195px;
  1110. right: 15px;
  1111. font-size: 14px;
  1112. border-bottom: 0px solid transparent;
  1113. }
  1114.  
  1115. .list-item .data.type::before {
  1116. content: "(";
  1117. }
  1118.  
  1119. .list-item .data.type::after {
  1120. content: ")";
  1121. }
  1122.  
  1123. .list-item .data.progress, .list-item .data.chapter {
  1124. top: 120px;
  1125. right: 15px;
  1126. width: 54px;
  1127. height: 48px;
  1128. background-color: #000;
  1129. border-bottom: 0px solid transparent;
  1130. font-size: 14px;
  1131. }
  1132.  
  1133. .list-item .data.progress span, .list-item .data.chapter span {
  1134. color: #FFF;
  1135. position: relative;
  1136. top: 12px;
  1137. }
  1138.  
  1139. .list-item .data.progress a, .list-item .data.chapter a {
  1140. color: #FFF !important;
  1141. font-size: 14px;
  1142. border-bottom: 0px solid transparent !important;
  1143. }
  1144.  
  1145. .list-item .data.progress span + span, .list-item .data.chapter span + span {
  1146. color: #FFF;
  1147. font-size: 10px;
  1148. }
  1149.  
  1150. .list-item .data.progress span input, .list-item .data.chapter span input {
  1151. position: absolute;
  1152. left: -10px;
  1153. top: 0px;
  1154. }
  1155.  
  1156. .list-item .data.progress a.icon-add-episode, .list-item .data.chapter a.icon-add-chapter {
  1157. position: absolute;
  1158. top: 0px;
  1159. left: -17px;
  1160. background-color: #333;
  1161. padding: 17px 2px 16px 3px;
  1162. opacity: 1;
  1163. border-bottom: 1px solid #333 !important;
  1164. transition: opacity 0.15s ease-in-out;
  1165. }
  1166.  
  1167. .list-item .data.progress a.icon-add-episode:hover, .list-item .data.chapter a.icon-add-chapter:hover {
  1168. opacity: 0.8;
  1169. }
  1170.  
  1171. .list-item .icon-watch, .list-item .icon-watch-pv {
  1172. display: none;
  1173. }
  1174.  
  1175. /*
  1176. MEDIA QUERIES
  1177. */
  1178.  
  1179. @media screen and (min-width: 3500px) {
  1180. .cover-block .image-container {
  1181. max-height: 1000px;
  1182. }
  1183.  
  1184. .cover-block .image-container::after {
  1185. height: 1000px;
  1186. }
  1187.  
  1188. .list-table .list-table-header a, .list-unit .list-status-title .stats a {
  1189. font-size: 32px;
  1190. }
  1191. }
  1192.  
  1193. @media screen and (min-width: 2200px) and (max-width: 3499px) {
  1194. .cover-block .image-container {
  1195. max-height: 700px;
  1196. }
  1197.  
  1198. .cover-block .image-container::after {
  1199. height: 700px;
  1200. }
  1201.  
  1202. .list-table .list-table-header a, .list-unit .list-status-title .stats a {
  1203. font-size: 26px;
  1204. }
  1205.  
  1206. #copyright {
  1207. font-size: 14px;
  1208. }
  1209. }
  1210.  
  1211. @media screen and (max-width: 1549px) {
  1212. .list-table .list-table-header a, .list-unit .list-status-title .stats a {
  1213. padding: 15px 30px 20px;
  1214. }
  1215. }
  1216.  
  1217. @media screen and (max-width: 1400px) {
  1218. .cover-block .image-container {
  1219. max-height: 350px;
  1220. }
  1221.  
  1222. .cover-block .image-container::after {
  1223. height: 350px;
  1224. }
  1225.  
  1226. .header .header-title {
  1227. background-size: auto 22px;
  1228. width: 135px;
  1229. }
  1230.  
  1231. .header .header-menu.other {
  1232. padding: 11px 4px;
  1233. }
  1234.  
  1235. .header .header-menu.other .btn-menu, .header .header-menu .header-info {
  1236. font-size: 11px;
  1237. }
  1238.  
  1239. .status-menu-container .status-menu .status-button {
  1240. margin: 0px 2%;
  1241. padding: 17px 0px 18px 0px;
  1242. font-size: 16px;
  1243. }
  1244.  
  1245. .list-table > tbody:not(.list-item) {
  1246. margin: 60px 0px;
  1247. }
  1248.  
  1249. .list-unit .list-status-title {
  1250. margin: 74px 0px 79px 0px;
  1251. right: 13%;
  1252. }
  1253.  
  1254. .list-table .list-table-header a, .list-unit .list-status-title .stats a {
  1255. padding: 12px 30px 17px;
  1256. font-size: 20px !important;
  1257. }
  1258. }
  1259.  
  1260. @media screen and (max-width: 1229px) {
  1261. .header .header-title {
  1262. background-size: auto 20px;
  1263. width: 125px;
  1264. }
  1265.  
  1266. .status-menu-container .status-menu .status-button {
  1267. margin: 0px 1.5%;
  1268. padding: 20px 0px 19px 0px;
  1269. font-size: 13px;
  1270. }
  1271.  
  1272. .header .header-menu.other {
  1273. padding: 14px 0px;
  1274. }
  1275.  
  1276. .header .header-menu.other .btn-menu, .header .header-menu .header-info {
  1277. font-size: 9px;
  1278. }
  1279.  
  1280. .list-unit .list-status-title {
  1281. margin: 66px 0px;
  1282. right: 15%;
  1283. }
  1284.  
  1285. .list-table .list-table-header a, .list-unit .list-status-title .stats a {
  1286. padding: 10px 25px 13px;
  1287. font-size: 16px !important;
  1288. }
  1289. }
  1290.  
  1291. @media screen and (max-width: 1037px) {
  1292. .list-table .list-table-header a, .list-unit .list-status-title .stats a {
  1293. padding: 10px 17px 13px;
  1294. }
  1295. }
  1296.  
  1297. @media screen and (max-width: 949px) {
  1298. .status-menu-container .status-menu {
  1299. width: 60%;
  1300. padding-top: 55px;
  1301. display: block;
  1302. height: 0px;
  1303. overflow-y: hidden;
  1304. box-shadow: 0px 5px 10px rgba(0,0,0,0);
  1305. transition: all 0.3s ease-in-out;
  1306. }
  1307.  
  1308. .status-menu-container .status-menu:hover, #status-menu:hover .status-menu {
  1309. height: 343px;
  1310. box-shadow: 0px 5px 10px rgba(0,0,0,0.4);
  1311. }
  1312.  
  1313. .status-menu-container .status-menu::before {
  1314. content: "Menu";
  1315. color: rgba(255,255,255,0.8);
  1316. font-size: 15px;
  1317. font-weight: bold;
  1318. display: block;
  1319. position: relative;
  1320. width: 20%;
  1321. top: -56px;
  1322. padding: 16px 0px;
  1323. margin: 0px 40%;
  1324. left: 0px;
  1325. border-bottom: 1px solid #FFF;
  1326. transition: width 0.3s ease-in-out, margin 0.3s ease-in-out, color 0.3s ease-in-out;
  1327. }
  1328.  
  1329. .status-menu-container:hover .status-menu::before {
  1330. width: 100%;
  1331. margin: 0px;
  1332. cursor: pointer;
  1333. color: rgba(255,255,255,1);
  1334. }
  1335.  
  1336. .status-menu-container .status-menu .status-button:first-of-type {
  1337. margin-top: -55px;
  1338. }
  1339.  
  1340. .status-menu-container .status-menu .status-button {
  1341. width: 33.4%;
  1342. margin: 0px;
  1343. padding: 20px 33.3%;
  1344. background-color: rgba(0,0,0,0.8);
  1345. }
  1346.  
  1347. #status-menu + .list-block {
  1348. position: relative;
  1349. z-index: 0;
  1350. transition: z-index 0.3s ease-out;
  1351. }
  1352.  
  1353. #status-menu:hover + .list-block {
  1354. z-index: -10;
  1355. }
  1356.  
  1357. .list-unit .list-status-title {
  1358. position: relative;
  1359. margin: 50px 0px 20px;
  1360. right: 0px;
  1361. display: table;
  1362. float: left;
  1363. width: 100%;
  1364. text-align: center;
  1365. }
  1366.  
  1367. .list-unit .list-status-title .stats {
  1368. position: relative;
  1369. display: table-cell;
  1370. }
  1371.  
  1372. .list-table > tbody:not(.list-item) {
  1373. margin: 20px 0px 50px;
  1374. width: 100%;
  1375. }
  1376.  
  1377. .list-table .list-table-header a, .list-unit .list-status-title .stats a {
  1378. padding: 13px 45px 15px;
  1379. }
  1380. }
  1381.  
  1382. @media screen and (max-width: 799px) {
  1383. .list-table .list-table-header a, .list-unit .list-status-title .stats a {
  1384. padding: 10px 25px 12px;
  1385. }
  1386.  
  1387. #copyright {
  1388. font-size: 10px;
  1389. }
  1390. }
  1391.  
  1392.  
  1393. /*
  1394. CHROME FIXES
  1395. */
  1396.  
  1397. @supports (-webkit-appearance:none) {
  1398. @media screen and (max-width: 949px) {
  1399. .status-menu-container .status-menu:hover, #status-menu:hover .status-menu {
  1400. height: 336px;
  1401. }
  1402. }
  1403. }
  1404.  
  1405.  
  1406. /*
  1407. IE FIXES (EDGE) - Really, Microsoft??
  1408. */
  1409.  
  1410. @supports (-ms-accelerator:true) {
  1411. .list-item {
  1412. margin: -12px -8px;
  1413. }
  1414.  
  1415. .list-item .more-info {
  1416. background-color: transparent !important;
  1417. position: relative;
  1418. }
  1419.  
  1420. .list-item .more-info .more-content {
  1421. display: block;
  1422. position: relative;
  1423. top: -150px;
  1424. height: 64px;
  1425. overflow-x: hidden;
  1426. overflow-y: scroll;
  1427. background-color: #EEE;
  1428. opacity: 0;
  1429. transition: opacity 0.25s 0s ease-out;
  1430. }
  1431.  
  1432. .list-item:hover .more-info .more-content {
  1433. opacity: 1;
  1434. transition: opacity 0.25s 0.25s ease-in;
  1435. }
  1436.  
  1437. .list-item .more-info .more-content > table {
  1438. height: 120px;
  1439. }
  1440.  
  1441. .all_anime .list-item .data.status.plantowatch ~ .data.image .image, .all_anime .list-item .data.status.plantoread ~ .data.image .image, .all_anime .list-item .data.status.plantowatch ~ .data.image a, .all_anime .list-item .data.status.plantoread ~ .data.image a {
  1442. filter: none;
  1443. }
  1444.  
  1445. .all_anime .list-item .data.status.plantowatch ~ .data.image a::after, .all_anime .list-item .data.status.plantoread ~ .data.image a::after {
  1446. display: block;
  1447. position: absolute;
  1448. top: 0px;
  1449. left: 0px;
  1450. content: "";
  1451. width: 100%;
  1452. height: 100%;
  1453. background-color: rgba(0,0,0,0.5);
  1454. }
  1455.  
  1456. @media screen and (max-width: 949px) {
  1457. .status-menu-container .status-menu:hover, #status-menu:hover .status-menu {
  1458. height: 338px;
  1459. }
  1460. }
  1461. }
  1462.  
  1463.  
  1464. /*
  1465. IE FIXES ( table {
  1466. height: 120px;
  1467. }
  1468.  
  1469. .all_anime .list-item .data.status.plantowatch ~ .data.image .image, .all_anime .list-item .data.status.plantoread ~ .data.image .image, .all_anime .list-item .data.status.plantowatch ~ .data.image a, .all_anime .list-item .data.status.plantoread ~ .data.image a {
  1470. filter: none;
  1471. }
  1472.  
  1473. .all_anime .list-item .data.status.plantowatch ~ .data.image a::after, .all_anime .list-item .data.status.plantoread ~ .data.image a::after {
  1474. display: block;
  1475. position: absolute;
  1476. top: 0px;
  1477. left: 0px;
  1478. content: "";
  1479. width: 100%;
  1480. height: 100%;
  1481. background-color: rgba(0,0,0,0.5);
  1482. }
  1483.  
  1484. .status-menu-container .status-menu:hover, #status-menu:hover .status-menu {
  1485. height: 338px;
  1486. }
  1487. }
  1488.  
  1489.  
  1490. /*
  1491. MOBILE FIXES
  1492. */
  1493.  
  1494. @media (-webkit-min-device-pixel-ratio: 1.5), (min-resolution: 1.5dppx), (max-width: 999px) {
  1495. body {
  1496. background-size: 100%;
  1497. }
  1498. }
  1499. .list-table .list-table-data .data.image a[href*="/anime/31646/3-gatsu_no_Lion"] {
  1500. background: url("https://myanimelist.cdn-dena.com/images/anime/12/82901.jpg") no-repeat center center / 100%;
  1501. }
  1502.  
  1503. .list-table .list-table-data .data.image a[href*="/anime/35120/Devilman__Crybaby"] {
  1504. background: url("https://myanimelist.cdn-dena.com/images/anime/2/89973.jpg") no-repeat center center / 100%;
  1505. }
  1506.  
  1507. .list-table .list-table-data .data.image a[href*="/anime/35503/Shoujo☆Kageki_Revue_Starlight"] {
  1508. background: url("https://image.ibb.co/mfwTsT/Shoujo_Kageki_Revue_Starlight.jpg") no-repeat center center / 100%;
  1509. }
  1510.  
  1511. .list-table .list-table-data .data.image a[href*="/anime/35983/Harukana_Receive"] {
  1512. background: url("https://image.ibb.co/fYc7mo/18.jpg") no-repeat center center / 100%;
  1513. }
  1514.  
  1515. .list-table .list-table-data .data.image a[href*="/anime/4181/Clannad__After_Story"] {
  1516. background: url("https://image.ibb.co/gOkwCT/ezgif_4_863f8fada3.jpg") no-repeat center center / 100%;
  1517. }
  1518.  
  1519. .list-table .list-table-data .data.image a[href*="/anime/14719/JoJo_no_Kimyou_na_Bouken_TV"] {
  1520. background: url("https://myanimelist.cdn-dena.com/images/anime/3/40409.jpg") no-repeat center center / 100%;
  1521. }
  1522.  
  1523. .list-table .list-table-data .data.image a[href*="/anime/20899/JoJo_no_Kimyou_na_Bouken__Stardust_Crusaders"] {
  1524. background: url("https://myanimelist.cdn-dena.com/images/anime/11/55267.jpg") no-repeat center center / 100%;
  1525. }
  1526.  
  1527. .list-table .list-table-data .data.image a[href*="/anime/26055/JoJo_no_Kimyou_na_Bouken__Stardust_Crusaders_2nd_Season"] {
  1528. background: url("https://myanimelist.cdn-dena.com/images/anime/11/75045.jpg") no-repeat center center / 100%;
  1529. }
  1530.  
  1531. .list-table .list-table-data .data.image a[href*="/anime/31933/JoJo_no_Kimyou_na_Bouken__Diamond_wa_Kudakenai"] {
  1532. background: url("https://myanimelist.cdn-dena.com/images/anime/3/79156.jpg") no-repeat center center / 100%;
  1533. }
  1534.  
  1535. .list-table .list-table-data .data.image a[href*="/anime/36516/Beatless"] {
  1536. background: url("https://myanimelist.cdn-dena.com/images/anime/1986/90184.jpg") no-repeat center center / 100%;
  1537. }
  1538.  
  1539. .list-table .list-table-data .data.image a[href*="/anime/34944/Bungou_Stray_Dogs__Dead_Apple"] {
  1540. background: url("https://cdn.anilist.co/img/dir/anime/reg/98384-LWcltN7uXmKO.jpg") no-repeat center center / 100%;
  1541. }
  1542.  
  1543. .list-table .list-table-data .data.image a[href*="/anime/14741/Chuunibyou_demo_Koi_ga_Shitai"] {
  1544. background: url("https://myanimelist.cdn-dena.com/images/anime/12/46931.jpg") no-repeat center center / 100%;
  1545. }
  1546.  
  1547. .list-table .list-table-data .data.image a[href*="/anime/37347/Dungeon_ni_Deai_wo_Motomeru_no_wa_Machigatteiru_Darou_ka_2nd_Season"] {
  1548. background: url("https://myanimelist.cdn-dena.com/images/anime/1476/90659.jpg") no-repeat center center / 100%;
  1549. }
  1550.  
  1551. .list-table .list-table-data .data.image a[href*="/anime/37348/Dungeon_ni_Deai_wo_Motomeru_no_wa_Machigatteiru_Darou_ka_Movie__Orion_no_Ya"] {
  1552. background: url("https://cdn.anilist.co/img/dir/anime/reg/101166-NQXUWmVenCHz.jpg") no-repeat center center / 100%;
  1553. }
  1554.  
  1555. .list-table .list-table-data .data.image a[href*="/anime/43/Ghost_in_the_Shell"] {
  1556. background: url("https://myanimelist.cdn-dena.com/images/anime/10/82594.jpg") no-repeat center center / 100%;
  1557. }
  1558.  
  1559. .list-table .list-table-data .data.image a[href*="/anime/35868/Grisaia__Phantom_Trigger"] {
  1560. background: url("https://myanimelist.cdn-dena.com/images/anime/7/86707.jpg") no-repeat center center / 100%;
  1561. }
  1562.  
  1563. .list-table .list-table-data .data.image a[href*="/anime/37210/Isekai_Maou_to_Shoukan_Shoujo_no_Dorei_Majutsu"] {
  1564. background: url("https://u.livechart.me/anime/poster_images/3061/ca701631f1c6829736f72385999e5add.png:small.jpg") no-repeat center center / 100%;
  1565. }
  1566.  
  1567. .list-table .list-table-data .data.image a[href*="/anime/33012/Island"] {
  1568. background: url("https://myanimelist.cdn-dena.com/images/anime/1319/92145.jpg") no-repeat center center / 100%;
  1569. }
  1570.  
  1571. .list-table .list-table-data .data.image a[href*="/anime/37510/Mob_Psycho_100_II"] {
  1572. background: url("https://myanimelist.cdn-dena.com/images/anime/1410/91179.jpg") no-repeat center center / 100%;
  1573. }
  1574.  
  1575. .list-table .list-table-data .data.image a[href*="/anime/36431/One_Room_2nd_Season"] {
  1576. background: url("https://myanimelist.cdn-dena.com/images/anime/1966/92677.jpg") no-repeat center center / 100%;
  1577. }
  1578.  
  1579. .list-table .list-table-data .data.image a[href*="/anime/12477/Sakasama_no_Patema"] {
  1580. background: url("https://myanimelist.cdn-dena.com/images/anime/12/52415.jpg") no-repeat center center / 100%;
  1581. }
  1582.  
  1583. .list-table .list-table-data .data.image a[href*="/anime/37492/Steins_Gate_0_OVA"] {
  1584. background: url("https://myanimelist.cdn-dena.com/images/anime/1262/91124.jpg") no-repeat center center / 100%;
  1585. }
  1586.  
  1587. .list-table .list-table-data .data.image a[href*="/anime/36817/Sunoharasou_no_Kanrinin-san"] {
  1588. background: url("https://u.livechart.me/anime/poster_images/2975/e4c3fc1bb673b14f0ee119a54b7ca4f0.png:small.jpg") no-repeat center center / 100%;
  1589. }
  1590.  
  1591. .list-table .list-table-data .data.image a[href*="/anime/37799/Tokyo_Ghoul_re_2nd_Season"] {
  1592. background: url("https://cdn.anilist.co/img/dir/anime/reg/102351-UF2jR1PAXoKQ.jpg") no-repeat center center / 100%;
  1593. }
  1594.  
  1595. .list-table .list-table-data .data.image a[href*="/anime/6/Trigun"] {
  1596. background: url("https://myanimelist.cdn-dena.com/images/anime/7/20310.jpg") no-repeat center center / 100%;
  1597. }
  1598.  
  1599. .list-table .list-table-data .data.image a[href*="/anime/34822/Tsuki_ga_Kirei"] {
  1600. background: url("https://myanimelist.cdn-dena.com/images/anime/2/85592.jpg") no-repeat center center / 100%;
  1601. }
  1602.  
  1603. .list-table .list-table-data .data.image a[href*="/anime/36539/Tsuki_ga_Kirei_Special"] {
  1604. background: url("https://preview.ibb.co/gkrD98/yakup_ipek_tsuki_ga_kirei_progress_finished.jpg") no-repeat center center / 100%;
  1605. }
  1606.  
  1607. .list-table .list-table-data .data.image a[href*="/anime/23775/Shingeki_no_Kyojin_Movie_1__Guren_no_Yumiya"] {
  1608. background: url("https://myanimelist.cdn-dena.com/images/anime/7/63283.jpg") no-repeat center center / 100%;
  1609. }
  1610.  
  1611. .list-table .list-table-data .data.image a[href*="/anime/23777/Shingeki_no_Kyojin_Movie_2__Jiyuu_no_Tsubasa"] {
  1612. background: url("https://myanimelist.cdn-dena.com/images/anime/2/72510.jpg") no-repeat center center / 100%;
  1613. }
  1614.  
  1615. .list-table .list-table-data .data.image a[href*="/anime/36702/Shingeki_no_Kyojin_Movie_3__Kakusei_no_Houkou"] {
  1616. background: url("https://myanimelist.cdn-dena.com/images/anime/2/88714.jpg") no-repeat center center / 100%;
  1617. }
  1618.  
  1619. .list-table .list-table-data .data.image a[href*="/anime/25781/Shingeki_no_Kyojin__Kuinaki_Sentaku"] {
  1620. background: url("https://myanimelist.cdn-dena.com/images/anime/8/69497.jpg") no-repeat center center / 100%;
  1621. }
  1622.  
  1623. .list-table .list-table-data .data.image a[href*="/anime/18397/Shingeki_no_Kyojin_OVA"] {
  1624. background: url("https://myanimelist.cdn-dena.com/images/anime/4/68847.jpg") no-repeat center center / 100%;
  1625. }
  1626.  
  1627. .list-table .list-table-data .data.image a[href*="/anime/36106/Shingeki_no_Kyojin__Lost_Girls"] {
  1628. background: url("https://myanimelist.cdn-dena.com/images/anime/1039/91943.jpg") no-repeat center center / 100%;
  1629. }
  1630.  
  1631. .list-table .list-table-data .data.image a[href*="/anime/33071/Bungou_Stray_Dogs__Hitori_Ayumu"] {
  1632. background: url("https://d3ieicw58ybon5.cloudfront.net/full/u/43eb67dd9ac94dc5938d51e469c14657.jpg") no-repeat center center / 100%;
  1633. }
  1634.  
  1635. .list-table .list-table-data .data.image a[href*="/anime/32867/Bungou_Stray_Dogs_2nd_Season"] {
  1636. background: url("https://myanimelist.cdn-dena.com/images/anime/5/88585.jpg") no-repeat center center / 100%;
  1637. }
  1638.  
  1639. .list-table .list-table-data .data.image a[href*="/anime/37277/Beatless_Intermission"] {
  1640. background: url("https://myanimelist.cdn-dena.com/images/anime/1709/90468.jpg") no-repeat center center / 100%;
  1641. }
  1642.  
  1643. .list-table .list-table-data .data.image a[href*="/anime/34055/Berserk_2nd_Season"] {
  1644. background: url("https://myanimelist.cdn-dena.com/images/anime/12/85296.jpg") no-repeat center center / 100%;
  1645. }
  1646.  
  1647. .list-table .list-table-data .data.image a[href*="/anime/34566/Boruto__Naruto_Next_Generations"] {
  1648. background: url("https://myanimelist.cdn-dena.com/images/anime/5/89424.jpg") no-repeat center center / 100%;
  1649. }
  1650.  
  1651. .list-table .list-table-data .data.image a[href*="/anime/36828/Caligula"] {
  1652. background: url("https://myanimelist.cdn-dena.com/images/anime/1162/92032.jpg") no-repeat center center / 100%;
  1653. }
  1654.  
  1655. .list-table .list-table-data .data.image a[href*="/anime/35928/Devils_Line"] {
  1656. background: url("https://myanimelist.cdn-dena.com/images/anime/1598/90817.jpg") no-repeat center center / 100%;
  1657. }
  1658.  
  1659. .list-table .list-table-data .data.image a[href*="/anime/37033/Emiya-san_Chi_no_Kyou_no_Gohan"] {
  1660. background: url("https://myanimelist.cdn-dena.com/images/anime/8/89981.jpg") no-repeat center center / 100%;
  1661. }
  1662.  
  1663. .list-table .list-table-data .data.image a[href*="/anime/34279/Grancrest_Senki"] {
  1664. background: url("https://myanimelist.cdn-dena.com/images/anime/4/89883.jpg") no-repeat center center / 100%;
  1665. }
  1666.  
  1667. .list-table .list-table-data .data.image a[href*="/anime/34281/High_School_DxD_Hero"] {
  1668. background: url("https://myanimelist.cdn-dena.com/images/anime/1538/90962.jpg") no-repeat center center / 100%;
  1669. }
  1670.  
  1671. .list-table .list-table-data .data.image a[href*="/anime/36296/Hinamatsuri"] {
  1672. background: url("https://myanimelist.cdn-dena.com/images/anime/1943/91370.jpg") no-repeat center center / 100%;
  1673. }
  1674.  
  1675. .list-table .list-table-data .data.image a[href*="/anime/33531/Juushinki_Pandora"] {
  1676. background: url("https://myanimelist.cdn-dena.com/images/anime/1901/90499.jpg") no-repeat center center / 100%;
  1677. }
  1678.  
  1679. .list-table .list-table-data .data.image a[href*="/anime/36023/Persona_5_the_Animation"] {
  1680. background: url("https://myanimelist.cdn-dena.com/images/anime/1797/91801.jpg") no-repeat center center / 100%;
  1681. }
  1682.  
  1683. .list-table .list-table-data .data.image a[href*="/anime/33889/Saredo_Tsumibito_wa_Ryuu_to_Odoru"] {
  1684. background: url("https://myanimelist.cdn-dena.com/images/anime/1835/91306.jpg") no-repeat center center / 100%;
  1685. }
  1686.  
  1687. .list-table .list-table-data .data.image a[href*="/anime/36949/Shokugeki_no_Souma__San_no_Sara_-_Toutsuki_Ressha-hen"] {
  1688. background: url("https://myanimelist.cdn-dena.com/images/anime/1337/91798.jpg") no-repeat center center / 100%;
  1689. }
  1690.  
  1691. .list-table .list-table-data .data.image a[href*="/anime/30484/Steins_Gate_0"] {
  1692. background: url("https://myanimelist.cdn-dena.com/images/anime/1031/90444.jpg") no-repeat center center / 100%;
  1693. }
  1694.  
  1695. .list-table .list-table-data .data.image a[href*="/anime/36511/Tokyo_Ghoul_re"] {
  1696. background: url("https://myanimelist.cdn-dena.com/images/anime/1812/90955.jpg") no-repeat center center / 100%;
  1697. }
  1698.  
  1699. .list-table .list-table-data .data.image a[href*="/anime/35968/Wotaku_ni_Koi_wa_Muzukashii"] {
  1700. background: url("https://myanimelist.cdn-dena.com/images/anime/1545/90922.jpg") no-repeat center center / 100%;
  1701. }
  1702.  
  1703. .list-table .list-table-data .data.image a[href*="/anime/36039/AICO__Incarnation"] {
  1704. background: url("https://myanimelist.cdn-dena.com/images/anime/1921/91085.jpg") no-repeat center center / 100%;
  1705. }
  1706.  
  1707. .list-table .list-table-data .data.image a[href*="/anime/25397/Absolute_Duo"] {
  1708. background: url("https://myanimelist.cdn-dena.com/images/anime/4/68839.jpg") no-repeat center center / 100%;
  1709. }
  1710.  
  1711. .list-table .list-table-data .data.image a[href*="/anime/31580/Ajin"] {
  1712. background: url("https://myanimelist.cdn-dena.com/images/anime/13/77968.jpg") no-repeat center center / 100%;
  1713. }
  1714.  
  1715. .list-table .list-table-data .data.image a[href*="/anime/33253/Ajin_2nd_Season"] {
  1716. background: url("https://myanimelist.cdn-dena.com/images/anime/12/81858.jpg") no-repeat center center / 100%;
  1717. }
  1718.  
  1719. .list-table .list-table-data .data.image a[href*="/anime/32015/Ajin_OVA"] {
  1720. background: url("https://myanimelist.cdn-dena.com/images/anime/12/79906.jpg") no-repeat center center / 100%;
  1721. }
  1722.  
  1723. .list-table .list-table-data .data.image a[href*="/anime/30123/Akagami_no_Shirayuki-hime"] {
  1724. background: url("https://myanimelist.cdn-dena.com/images/anime/10/75764.jpg") no-repeat center center / 100%;
  1725. }
  1726.  
  1727. .list-table .list-table-data .data.image a[href*="/anime/31173/Akagami_no_Shirayuki-hime_2nd_Season"] {
  1728. background: url("https://myanimelist.cdn-dena.com/images/anime/12/77834.jpg") no-repeat center center / 100%;
  1729. }
  1730.  
  1731. .list-table .list-table-data .data.image a[href*="/anime/22199/Akame_ga_Kill"] {
  1732. background: url("https://myanimelist.cdn-dena.com/images/anime/6/78438.jpg") no-repeat center center / 100%;
  1733. }
  1734.  
  1735. .list-table .list-table-data .data.image a[href*="/anime/47/Akira"] {
  1736. background: url("https://myanimelist.cdn-dena.com/images/anime/2/82596.jpg") no-repeat center center / 100%;
  1737. }
  1738.  
  1739. .list-table .list-table-data .data.image a[href*="/anime/6547/Angel_Beats"] {
  1740. background: url("https://myanimelist.cdn-dena.com/images/anime/10/22061.jpg") no-repeat center center / 100%;
  1741. }
  1742.  
  1743. .list-table .list-table-data .data.image a[href*="/anime/9062/Angel_Beats_Specials"] {
  1744. background: url("https://myanimelist.cdn-dena.com/images/anime/4/25073.jpg") no-repeat center center / 100%;
  1745. }
  1746.  
  1747. .list-table .list-table-data .data.image a[href*="/anime/10067/Angel_Beats__Another_Epilogue"] {
  1748. background: url("https://myanimelist.cdn-dena.com/images/anime/10/22062.jpg") no-repeat center center / 100%;
  1749. }
  1750.  
  1751. .list-table .list-table-data .data.image a[href*="/anime/9989/Ano_Hi_Mita_Hana_no_Namae_wo_Bokutachi_wa_Mada_Shiranai"] {
  1752. background: url("https://myanimelist.cdn-dena.com/images/anime/5/79697.jpg") no-repeat center center / 100%;
  1753. }
  1754.  
  1755. .list-table .list-table-data .data.image a[href*="/anime/15039/Ano_Hi_Mita_Hana_no_Namae_wo_Bokutachi_wa_Mada_Shiranai_Movie"] {
  1756. background: url("https://myanimelist.cdn-dena.com/images/anime/3/53903.jpg") no-repeat center center / 100%;
  1757. }
  1758.  
  1759. .list-table .list-table-data .data.image a[href*="/anime/11433/Ano_Natsu_de_Matteru"] {
  1760. background: url("https://myanimelist.cdn-dena.com/images/anime/12/59405.jpg") no-repeat center center / 100%;
  1761. }
  1762.  
  1763. .list-table .list-table-data .data.image a[href*="/anime/11111/Another"] {
  1764. background: url("https://myanimelist.cdn-dena.com/images/anime/4/75509.jpg") no-repeat center center / 100%;
  1765. }
  1766.  
  1767. .list-table .list-table-data .data.image a[href*="/anime/11701/Another__The_Other_-_Inga"] {
  1768. background: url("https://myanimelist.cdn-dena.com/images/anime/9/42051.jpg") no-repeat center center / 100%;
  1769. }
  1770.  
  1771. .list-table .list-table-data .data.image a[href*="/anime/21995/Ao_Haru_Ride"] {
  1772. background: url("https://myanimelist.cdn-dena.com/images/anime/8/64813.jpg") no-repeat center center / 100%;
  1773. }
  1774.  
  1775. .list-table .list-table-data .data.image a[href*="/anime/7193/Aoi_Bungaku_Series"] {
  1776. background: url("https://myanimelist.cdn-dena.com/images/anime/10/17471.jpg") no-repeat center center / 100%;
  1777. }
  1778.  
  1779. .list-table .list-table-data .data.image a[href*="/anime/2251/Baccano"] {
  1780. background: url("https://myanimelist.cdn-dena.com/images/anime/3/14547.jpg") no-repeat center center / 100%;
  1781. }
  1782.  
  1783. .list-table .list-table-data .data.image a[href*="/anime/3901/Baccano_Specials"] {
  1784. background: url("https://myanimelist.cdn-dena.com/images/anime/7/9129.jpg") no-repeat center center / 100%;
  1785. }
  1786.  
  1787. .list-table .list-table-data .data.image a[href*="/anime/28805/Bakemono_no_Ko"] {
  1788. background: url("https://myanimelist.cdn-dena.com/images/anime/11/69525.jpg") no-repeat center center / 100%;
  1789. }
  1790.  
  1791. .list-table .list-table-data .data.image a[href*="/anime/5081/Bakemonogatari"] {
  1792. background: url("https://myanimelist.cdn-dena.com/images/anime/11/75274.jpg") no-repeat center center / 100%;
  1793. }
  1794.  
  1795. .list-table .list-table-data .data.image a[href*="/anime/6948/Bakemonogatari_Recap"] {
  1796. background: url("https://myanimelist.cdn-dena.com/images/anime/11/65863.jpg") no-repeat center center / 100%;
  1797. }
  1798.  
  1799. .list-table .list-table-data .data.image a[href*="/anime/32379/Berserk"] {
  1800. background: url("https://myanimelist.cdn-dena.com/images/anime/10/79352.jpg") no-repeat center center / 100%;
  1801. }
  1802.  
  1803. .list-table .list-table-data .data.image a[href*="/anime/10218/Berserk__Ougon_Jidai-hen_I_-_Haou_no_Tamago"] {
  1804. background: url("https://myanimelist.cdn-dena.com/images/anime/12/62179.jpg") no-repeat center center / 100%;
  1805. }
  1806.  
  1807. .list-table .list-table-data .data.image a[href*="/anime/12113/Berserk__Ougon_Jidai-hen_II_-_Doldrey_Kouryaku"] {
  1808. background: url("https://myanimelist.cdn-dena.com/images/anime/12/37193.jpg") no-repeat center center / 100%;
  1809. }
  1810.  
  1811. .list-table .list-table-data .data.image a[href*="/anime/12115/Berserk__Ougon_Jidai-hen_III_-_Kourin"] {
  1812. background: url("https://myanimelist.cdn-dena.com/images/anime/12/41305.jpg") no-repeat center center / 100%;
  1813. }
  1814.  
  1815. .list-table .list-table-data .data.image a[href*="/anime/20787/Black_Bullet"] {
  1816. background: url("https://myanimelist.cdn-dena.com/images/anime/6/57947.jpg") no-repeat center center / 100%;
  1817. }
  1818.  
  1819. .list-table .list-table-data .data.image a[href*="/anime/889/Black_Lagoon"] {
  1820. background: url("https://myanimelist.cdn-dena.com/images/anime/4/25596.jpg") no-repeat center center / 100%;
  1821. }
  1822.  
  1823. .list-table .list-table-data .data.image a[href*="/anime/4901/Black_Lagoon__Robertas_Blood_Trail"] {
  1824. background: url("https://myanimelist.cdn-dena.com/images/anime/8/75529.jpg") no-repeat center center / 100%;
  1825. }
  1826.  
  1827. .list-table .list-table-data .data.image a[href*="/anime/1519/Black_Lagoon__The_Second_Barrage"] {
  1828. background: url("https://myanimelist.cdn-dena.com/images/anime/3/83748.jpg") no-repeat center center / 100%;
  1829. }
  1830.  
  1831. .list-table .list-table-data .data.image a[href*="/anime/32086/Blame_Movie"] {
  1832. background: url("https://myanimelist.cdn-dena.com/images/anime/8/85516.jpg") no-repeat center center / 100%;
  1833. }
  1834.  
  1835. .list-table .list-table-data .data.image a[href*="/anime/31043/Boku_dake_ga_Inai_Machi"] {
  1836. background: url("https://myanimelist.cdn-dena.com/images/anime/10/77957.jpg") no-repeat center center / 100%;
  1837. }
  1838.  
  1839. .list-table .list-table-data .data.image a[href*="/anime/10719/Boku_wa_Tomodachi_ga_Sukunai"] {
  1840. background: url("https://myanimelist.cdn-dena.com/images/anime/8/32873.jpg") no-repeat center center / 100%;
  1841. }
  1842.  
  1843. .list-table .list-table-data .data.image a[href*="/anime/10897/Boku_wa_Tomodachi_ga_Sukunai_Episode_0"] {
  1844. background: url("https://myanimelist.cdn-dena.com/images/anime/8/30097.jpg") no-repeat center center / 100%;
  1845. }
  1846.  
  1847. .list-table .list-table-data .data.image a[href*="/anime/14967/Boku_wa_Tomodachi_ga_Sukunai_Next"] {
  1848. background: url("https://myanimelist.cdn-dena.com/images/anime/3/44724.jpg") no-repeat center center / 100%;
  1849. }
  1850.  
  1851. .list-table .list-table-data .data.image a[href*="/anime/14027/Boku_wa_Tomodachi_ga_Sukunai__Relay_Shousetsu_wa_Ketsumatsu_ga_Hanpanai"] {
  1852. background: url("https://myanimelist.cdn-dena.com/images/anime/3/39215.jpg") no-repeat center center / 100%;
  1853. }
  1854.  
  1855. .list-table .list-table-data .data.image a[href*="/anime/21405/Bokura_wa_Minna_Kawai-sou"] {
  1856. background: url("https://myanimelist.cdn-dena.com/images/anime/6/64629.jpg") no-repeat center center / 100%;
  1857. }
  1858.  
  1859. .list-table .list-table-data .data.image a[href*="/anime/28755/Boruto__Naruto_the_Movie"] {
  1860. background: url("https://myanimelist.cdn-dena.com/images/anime/4/78280.jpg") no-repeat center center / 100%;
  1861. }
  1862.  
  1863. .list-table .list-table-data .data.image a[href*="/anime/32365/Boruto__Naruto_the_Movie_-_Naruto_ga_Hokage_ni_Natta_Hi"] {
  1864. background: url("https://myanimelist.cdn-dena.com/images/anime/6/77678.jpg") no-repeat center center / 100%;
  1865. }
  1866.  
  1867. .list-table .list-table-data .data.image a[href*="/anime/14345/Btooom"] {
  1868. background: url("https://myanimelist.cdn-dena.com/images/anime/4/40977.jpg") no-repeat center center / 100%;
  1869. }
  1870.  
  1871. .list-table .list-table-data .data.image a[href*="/anime/1689/Byousoku_5_Centimeter"] {
  1872. background: url("https://myanimelist.cdn-dena.com/images/anime/6/73426.jpg") no-repeat center center / 100%;
  1873. }
  1874.  
  1875. .list-table .list-table-data .data.image a[href*="/anime/17269/Captain_Herlock"] {
  1876. background: url("https://myanimelist.cdn-dena.com/images/anime/11/52075.jpg") no-repeat center center / 100%;
  1877. }
  1878.  
  1879. .list-table .list-table-data .data.image a[href*="/anime/10012/Carnival_Phantasm"] {
  1880. background: url("https://myanimelist.cdn-dena.com/images/anime/10/64283.jpg") no-repeat center center / 100%;
  1881. }
  1882.  
  1883. .list-table .list-table-data .data.image a[href*="/anime/12187/Carnival_Phantasm_EX_Season"] {
  1884. background: url("https://myanimelist.cdn-dena.com/images/anime/4/64281.jpg") no-repeat center center / 100%;
  1885. }
  1886.  
  1887. .list-table .list-table-data .data.image a[href*="/anime/28999/Charlotte"] {
  1888. background: url("https://myanimelist.cdn-dena.com/images/anime/12/74683.jpg") no-repeat center center / 100%;
  1889. }
  1890.  
  1891. .list-table .list-table-data .data.image a[href*="/anime/1575/Code_Geass__Hangyaku_no_Lelouch"] {
  1892. background: url("https://myanimelist.cdn-dena.com/images/anime/5/50331.jpg") no-repeat center center / 100%;
  1893. }
  1894.  
  1895. .list-table .list-table-data .data.image a[href*="/anime/2904/Code_Geass__Hangyaku_no_Lelouch_R2"] {
  1896. background: url("https://myanimelist.cdn-dena.com/images/anime/4/9391.jpg") no-repeat center center / 100%;
  1897. }
  1898.  
  1899. .list-table .list-table-data .data.image a[href*="/anime/8142/Colorful_Movie"] {
  1900. background: url("https://myanimelist.cdn-dena.com/images/anime/4/29497.jpg") no-repeat center center / 100%;
  1901. }
  1902.  
  1903. .list-table .list-table-data .data.image a[href*="/anime/15583/Date_A_Live"] {
  1904. background: url("https://myanimelist.cdn-dena.com/images/anime/13/44844.jpg") no-repeat center center / 100%;
  1905. }
  1906.  
  1907. .list-table .list-table-data .data.image a[href*="/anime/19163/Date_A_Live_II"] {
  1908. background: url("https://myanimelist.cdn-dena.com/images/anime/5/76003.jpg") no-repeat center center / 100%;
  1909. }
  1910.  
  1911. .list-table .list-table-data .data.image a[href*="/anime/24655/Date_A_Live_Movie__Mayuri_Judgment"] {
  1912. background: url("https://myanimelist.cdn-dena.com/images/anime/4/77947.jpg") no-repeat center center / 100%;
  1913. }
  1914.  
  1915. .list-table .list-table-data .data.image a[href*="/anime/17641/Date_A_Live__Date_to_Date"] {
  1916. background: url("https://myanimelist.cdn-dena.com/images/anime/12/60145.jpg") no-repeat center center / 100%;
  1917. }
  1918.  
  1919. .list-table .list-table-data .data.image a[href*="/anime/22961/Date_A_Live__Encore"] {
  1920. background: url("https://myanimelist.cdn-dena.com/images/anime/9/81856.jpg") no-repeat center center / 100%;
  1921. }
  1922.  
  1923. .list-table .list-table-data .data.image a[href*="/anime/14353/Death_Billiards"] {
  1924. background: url("https://myanimelist.cdn-dena.com/images/anime/11/48721.jpg") no-repeat center center / 100%;
  1925. }
  1926.  
  1927. .list-table .list-table-data .data.image a[href*="/anime/34497/Death_March_kara_Hajimaru_Isekai_Kyousoukyoku"] {
  1928. background: url("https://myanimelist.cdn-dena.com/images/anime/4/88911.jpg") no-repeat center center / 100%;
  1929. }
  1930.  
  1931. .list-table .list-table-data .data.image a[href*="/anime/1535/Death_Note"] {
  1932. background: url("https://myanimelist.cdn-dena.com/images/anime/9/9453.jpg") no-repeat center center / 100%;
  1933. }
  1934.  
  1935. .list-table .list-table-data .data.image a[href*="/anime/28223/Death_Parade"] {
  1936. background: url("https://myanimelist.cdn-dena.com/images/anime/5/71553.jpg") no-repeat center center / 100%;
  1937. }
  1938.  
  1939. .list-table .list-table-data .data.image a[href*="/anime/223/Dragon_Ball"] {
  1940. background: url("https://myanimelist.cdn-dena.com/images/anime/9/21055.jpg") no-repeat center center / 100%;
  1941. }
  1942.  
  1943. .list-table .list-table-data .data.image a[href*="/anime/225/Dragon_Ball_GT"] {
  1944. background: url("https://myanimelist.cdn-dena.com/images/anime/11/20727.jpg") no-repeat center center / 100%;
  1945. }
  1946.  
  1947. .list-table .list-table-data .data.image a[href*="/anime/987/Dragon_Ball_GT__Gokuu_Gaiden_Yuuki_no_Akashi_wa_Suushinchuu"] {
  1948. background: url("https://myanimelist.cdn-dena.com/images/anime/1/987.jpg") no-repeat center center / 100%;
  1949. }
  1950.  
  1951. .list-table .list-table-data .data.image a[href*="/anime/6033/Dragon_Ball_Kai"] {
  1952. background: url("https://myanimelist.cdn-dena.com/images/anime/6/14065.jpg") no-repeat center center / 100%;
  1953. }
  1954.  
  1955. .list-table .list-table-data .data.image a[href*="/anime/22777/Dragon_Ball_Kai_2014"] {
  1956. background: url("https://myanimelist.cdn-dena.com/images/anime/10/59275.jpg") no-repeat center center / 100%;
  1957. }
  1958.  
  1959. .list-table .list-table-data .data.image a[href*="/anime/11359/Dragon_Ball_Kai__Mirai_ni_Heiwa_wo_Goku_no_Tamashii_yo_Eien_ni"] {
  1960. background: url("https://myanimelist.cdn-dena.com/images/anime/13/33877.jpg") no-repeat center center / 100%;
  1961. }
  1962.  
  1963. .list-table .list-table-data .data.image a[href*="/anime/502/Dragon_Ball_Movie_1__Shen_Long_no_Densetsu"] {
  1964. background: url("https://myanimelist.cdn-dena.com/images/anime/1854/90339.jpg") no-repeat center center / 100%;
  1965. }
  1966.  
  1967. .list-table .list-table-data .data.image a[href*="/anime/891/Dragon_Ball_Movie_2__Majinjou_no_Nemuri_Hime"] {
  1968. background: url("https://myanimelist.cdn-dena.com/images/anime/1285/90340.jpg") no-repeat center center / 100%;
  1969. }
  1970.  
  1971. .list-table .list-table-data .data.image a[href*="/anime/892/Dragon_Ball_Movie_3__Makafushigi_Daibouken"] {
  1972. background: url("https://myanimelist.cdn-dena.com/images/anime/1825/90341.jpg") no-repeat center center / 100%;
  1973. }
  1974.  
  1975. .list-table .list-table-data .data.image a[href*="/anime/893/Dragon_Ball_Movie_4__Saikyou_e_no_Michi"] {
  1976. background: url("https://myanimelist.cdn-dena.com/images/anime/1745/90342.jpg") no-repeat center center / 100%;
  1977. }
  1978.  
  1979. .list-table .list-table-data .data.image a[href*="/anime/2520/Dragon_Ball_Specials"] {
  1980. background: url("https://myanimelist.cdn-dena.com/images/anime/12/40353.jpg") no-repeat center center / 100%;
  1981. }
  1982.  
  1983. .list-table .list-table-data .data.image a[href*="/anime/30694/Dragon_Ball_Super"] {
  1984. background: url("https://myanimelist.cdn-dena.com/images/anime/7/74606.jpg") no-repeat center center / 100%;
  1985. }
  1986.  
  1987. .list-table .list-table-data .data.image a[href*="/anime/813/Dragon_Ball_Z"] {
  1988. background: url("https://myanimelist.cdn-dena.com/images/anime/6/20936.jpg") no-repeat center center / 100%;
  1989. }
  1990.  
  1991. .list-table .list-table-data .data.image a[href*="/anime/894/Dragon_Ball_Z_Movie_01__Ora_no_Gohan_wo_Kaese"] {
  1992. background: url("https://myanimelist.cdn-dena.com/images/anime/1258/90343.jpg") no-repeat center center / 100%;
  1993. }
  1994.  
  1995. .list-table .list-table-data .data.image a[href*="/anime/895/Dragon_Ball_Z_Movie_02__Kono_Yo_de_Ichiban_Tsuyoi_Yatsu"] {
  1996. background: url("https://myanimelist.cdn-dena.com/images/anime/1017/90344.jpg") no-repeat center center / 100%;
  1997. }
  1998.  
  1999. .list-table .list-table-data .data.image a[href*="/anime/896/Dragon_Ball_Z_Movie_03__Chikyuu_Marugoto_Choukessen"] {
  2000. background: url("https://myanimelist.cdn-dena.com/images/anime/1956/90345.jpg") no-repeat center center / 100%;
  2001. }
  2002.  
  2003. .list-table .list-table-data .data.image a[href*="/anime/897/Dragon_Ball_Z_Movie_04__Super_Saiyajin_da_Son_Gokuu"] {
  2004. background: url("https://myanimelist.cdn-dena.com/images/anime/2/10196.jpg") no-repeat center center / 100%;
  2005. }
  2006.  
  2007. .list-table .list-table-data .data.image a[href*="/anime/898/Dragon_Ball_Z_Movie_05__Tobikkiri_no_Saikyou_tai_Saikyou"] {
  2008. background: url("https://myanimelist.cdn-dena.com/images/anime/13/21111.jpg") no-repeat center center / 100%;
  2009. }
  2010.  
  2011. .list-table .list-table-data .data.image a[href*="/anime/899/Dragon_Ball_Z_Movie_06__Gekitotsu_100-oku_Power_no_Senshi-tachi"] {
  2012. background: url("https://preview.ibb.co/jcynZ8/tumblr_ofnawn_BCZU1u8uj45o1_1280.jpg") no-repeat center center / 100%;
  2013. }
  2014.  
  2015. .list-table .list-table-data .data.image a[href*="/anime/900/Dragon_Ball_Z_Movie_07__Kyokugen_Battle_Sandai_Super_Saiyajin"] {
  2016. background: url("https://myanimelist.cdn-dena.com/images/anime/2/10199.jpg") no-repeat center center / 100%;
  2017. }
  2018.  
  2019. .list-table .list-table-data .data.image a[href*="/anime/901/Dragon_Ball_Z_Movie_08__Moetsukiro_Nessen_Ressen_Chougekisen"] {
  2020. background: url("https://myanimelist.cdn-dena.com/images/anime/5/10200.jpg") no-repeat center center / 100%;
  2021. }
  2022.  
  2023. .list-table .list-table-data .data.image a[href*="/anime/902/Dragon_Ball_Z_Movie_09__Ginga_Girigiri_Bucchigiri_no_Sugoi_Yatsu"] {
  2024. background: url("https://myanimelist.cdn-dena.com/images/anime/1085/92333.jpg") no-repeat center center / 100%;
  2025. }
  2026.  
  2027. .list-table .list-table-data .data.image a[href*="/anime/903/Dragon_Ball_Z_Movie_10__Kiken_na_Futari_Super_Senshi_wa_Nemurenai"] {
  2028. background: url("https://myanimelist.cdn-dena.com/images/anime/1088/92335.jpg") no-repeat center center / 100%;
  2029. }
  2030.  
  2031. .list-table .list-table-data .data.image a[href*="/anime/904/Dragon_Ball_Z_Movie_11__Super_Senshi_Gekiha_Katsu_no_wa_Ore_da"] {
  2032. background: url("https://myanimelist.cdn-dena.com/images/anime/4/10203.jpg") no-repeat center center / 100%;
  2033. }
  2034.  
  2035. .list-table .list-table-data .data.image a[href*="/anime/905/Dragon_Ball_Z_Movie_12__Fukkatsu_no_Fusion_Gokuu_to_Vegeta"] {
  2036. background: url("https://myanimelist.cdn-dena.com/images/anime/1893/90675.jpg") no-repeat center center / 100%;
  2037. }
  2038.  
  2039. .list-table .list-table-data .data.image a[href*="/anime/906/Dragon_Ball_Z_Movie_13__Ryuuken_Bakuhatsu_Goku_ga_Yaraneba_Dare_ga_Yaru"] {
  2040. background: url("https://myanimelist.cdn-dena.com/images/anime/12/10205.jpg") no-repeat center center / 100%;
  2041. }
  2042.  
  2043. .list-table .list-table-data .data.image a[href*="/anime/14837/Dragon_Ball_Z_Movie_14__Kami_to_Kami"] {
  2044. background: url("https://myanimelist.cdn-dena.com/images/anime/9/44490.jpg") no-repeat center center / 100%;
  2045. }
  2046.  
  2047. .list-table .list-table-data .data.image a[href*="/anime/25389/Dragon_Ball_Z_Movie_15__Fukkatsu_no_F"] {
  2048. background: url("https://myanimelist.cdn-dena.com/images/anime/12/68805.jpg") no-repeat center center / 100%;
  2049. }
  2050.  
  2051. .list-table .list-table-data .data.image a[href*="/anime/986/Dragon_Ball_Z_Special_1__Tatta_Hitori_no_Saishuu_Kessen"] {
  2052. background: url("https://myanimelist.cdn-dena.com/images/anime/8/3303.jpg") no-repeat center center / 100%;
  2053. }
  2054.  
  2055. .list-table .list-table-data .data.image a[href*="/anime/985/Dragon_Ball_Z_Special_2__Zetsubou_e_no_Hankou_Nokosareta_Chousenshi_-_Gohan_to_Trunks"] {
  2056. background: url("https://myanimelist.cdn-dena.com/images/anime/7/10207.jpg") no-repeat center center / 100%;
  2057. }
  2058.  
  2059. .list-table .list-table-data .data.image a[href*="/anime/984/Dragon_Ball_Z__Saiya-jin_Zetsumetsu_Keikaku"] {
  2060. background: url("https://myanimelist.cdn-dena.com/images/anime/11/28845.jpg") no-repeat center center / 100%;
  2061. }
  2062.  
  2063. .list-table .list-table-data .data.image a[href*="/anime/12231/Dragon_Ball__Episode_of_Bardock"] {
  2064. background: url("https://myanimelist.cdn-dena.com/images/anime/8/35005.jpg") no-repeat center center / 100%;
  2065. }
  2066.  
  2067. .list-table .list-table-data .data.image a[href*="/anime/5152/Dragon_Ball__Ossu_Kaettekita_Son_Gokuu_to_Nakama-tachi"] {
  2068. background: url("https://myanimelist.cdn-dena.com/images/anime/12/82828.jpg") no-repeat center center / 100%;
  2069. }
  2070.  
  2071. .list-table .list-table-data .data.image a[href*="/anime/10017/Dragon_Ball__Super_Saiya-jin_Zetsumetsu_Keikaku"] {
  2072. background: url("https://myanimelist.cdn-dena.com/images/anime/8/56931.jpg") no-repeat center center / 100%;
  2073. }
  2074.  
  2075. .list-table .list-table-data .data.image a[href*="/anime/31339/Drifters"] {
  2076. background: url("https://myanimelist.cdn-dena.com/images/anime/10/80271.jpg") no-repeat center center / 100%;
  2077. }
  2078.  
  2079. .list-table .list-table-data .data.image a[href*="/anime/36480/Drifters_OVA"] {
  2080. background: url("https://myanimelist.cdn-dena.com/images/anime/9/89219.jpg") no-repeat center center / 100%;
  2081. }
  2082.  
  2083. .list-table .list-table-data .data.image a[href*="/anime/28121/Dungeon_ni_Deai_wo_Motomeru_no_wa_Machigatteiru_Darou_ka"] {
  2084. background: url("https://myanimelist.cdn-dena.com/images/anime/2/70187.jpg") no-repeat center center / 100%;
  2085. }
  2086.  
  2087. .list-table .list-table-data .data.image a[href*="/anime/226/Elfen_Lied"] {
  2088. background: url("https://myanimelist.cdn-dena.com/images/anime/10/6883.jpg") no-repeat center center / 100%;
  2089. }
  2090.  
  2091. .list-table .list-table-data .data.image a[href*="/anime/376/Elfen_Lied__Tooriame_nite_Arui_wa_Shoujo_wa_Ikani_Shite_Sono_Shinjou_ni_Itatta_ka_-_Regenschauer"] {
  2092. background: url("https://myanimelist.cdn-dena.com/images/anime/10/74146.jpg") no-repeat center center / 100%;
  2093. }
  2094.  
  2095. .list-table .list-table-data .data.image a[href*="/anime/34662/Fate_Apocrypha"] {
  2096. background: url("https://myanimelist.cdn-dena.com/images/anime/9/86573.jpg") no-repeat center center / 100%;
  2097. }
  2098.  
  2099. .list-table .list-table-data .data.image a[href*="/anime/33047/Fate_Extra__Last_Encore"] {
  2100. background: url("https://myanimelist.cdn-dena.com/images/anime/1122/90836.jpg") no-repeat center center / 100%;
  2101. }
  2102.  
  2103. .list-table .list-table-data .data.image a[href*="/anime/34321/Fate_Grand_Order__First_Order"] {
  2104. background: url("https://myanimelist.cdn-dena.com/images/anime/6/82651.jpg") no-repeat center center / 100%;
  2105. }
  2106.  
  2107. .list-table .list-table-data .data.image a[href*="/anime/14829/Fate_kaleid_liner_Prisma\2606Illya"] {
  2108. background: url("https://myanimelist.cdn-dena.com/images/anime/7/52603.jpg") no-repeat center center / 100%;
  2109. }
  2110.  
  2111. .list-table .list-table-data .data.image a[href*="/anime/19109/Fate_kaleid_liner_Prisma\2606Illya_Specials"] {
  2112. background: url("https://vignette.wikia.nocookie.net/typemoon/images/a/a1/Fate_kaleid_liner_PRISMA_ILLYA_2wei_Herz%21_Visual.jpg/revision/latest?cb=20170901154420") no-repeat center center / 100%;
  2113. }
  2114.  
  2115. .list-table .list-table-data .data.image a[href*="/anime/27525/Fate_kaleid_liner_Prisma\2606Illya_2wei_Herz"] {
  2116. background: url("https://myanimelist.cdn-dena.com/images/anime/7/75297.jpg") no-repeat center center / 100%;
  2117. }
  2118.  
  2119. .list-table .list-table-data .data.image a[href*="/anime/31056/Fate_kaleid_liner_Prisma\2606Illya_2wei_Herz_Specials"] {
  2120. background: url("https://myanimelist.cdn-dena.com/images/anime/7/81262.jpg") no-repeat center center / 100%;
  2121. }
  2122.  
  2123. .list-table .list-table-data .data.image a[href*="/anime/20509/Fate_kaleid_liner_Prisma\2606Illya_2wei"] {
  2124. background: url("https://myanimelist.cdn-dena.com/images/anime/12/64175.jpg") no-repeat center center / 100%;
  2125. }
  2126.  
  2127. .list-table .list-table-data .data.image a[href*="/anime/25011/Fate_kaleid_liner_Prisma\2606Illya_2wei_Specials"] {
  2128. background: url("https://vignette.wikia.nocookie.net/typemoon/images/2/2d/Fate_kaleid_liner_PRISMA_ILLYA_Oath_of_Snow_Visual_2.jpg/revision/latest?cb=20170616095835") no-repeat center center / 100%;
  2129. }
  2130.  
  2131. .list-table .list-table-data .data.image a[href*="/anime/26057/Fate_kaleid_liner_Prisma\2606Illya_2wei__Mahou_Shoujo_in_Onsen_Ryokou"] {
  2132. background: url("https://myanimelist.cdn-dena.com/images/anime/2/76646.jpg") no-repeat center center / 100%;
  2133. }
  2134.  
  2135. .list-table .list-table-data .data.image a[href*="/anime/31706/Fate_kaleid_liner_Prisma\2606Illya_3rei"] {
  2136. background: url("https://myanimelist.cdn-dena.com/images/anime/7/80834.jpg") no-repeat center center / 100%;
  2137. }
  2138.  
  2139. .list-table .list-table-data .data.image a[href*="/anime/33456/Fate_kaleid_liner_Prisma\2606Illya_3rei_Specials"] {
  2140. background: url("https://myanimelist.cdn-dena.com/images/anime/13/85698.jpg") no-repeat center center / 100%;
  2141. }
  2142.  
  2143. .list-table .list-table-data .data.image a[href*="/anime/34100/Fate_kaleid_liner_Prisma\2606Illya_Movie__Sekka_no_Chikai"] {
  2144. background: url("https://i.imgur.com/Z1Um1ZO.jpg") no-repeat center center / 100%;
  2145. }
  2146.  
  2147. .list-table .list-table-data .data.image a[href*="/anime/36833/Fate_kaleid_liner_Prisma\2606Illya_Movie__Sekka_no_Chikai_-_Kuro_Sakura_no_Heya"] {
  2148. background: url("https://image.ibb.co/j81Ycd/Emiya_Shirou_Alternate_600_2198977.jpg") no-repeat center center / 100%;
  2149. }
  2150.  
  2151. .list-table .list-table-data .data.image a[href*="/anime/18851/Fate_kaleid_liner_Prisma\2606Illya__Undoukai_de_Dance"] {
  2152. background: url("https://myanimelist.cdn-dena.com/images/anime/7/60279.jpg") no-repeat center center / 100%;
  2153. }
  2154.  
  2155. .list-table .list-table-data .data.image a[href*="/anime/12565/Fate_Prototype"] {
  2156. background: url("https://myanimelist.cdn-dena.com/images/anime/3/51045.jpg") no-repeat center center / 100%;
  2157. }
  2158.  
  2159. .list-table .list-table-data .data.image a[href*="/anime/356/Fate_stay_night"] {
  2160. background: url("https://myanimelist.cdn-dena.com/images/anime/4/30327.jpg") no-repeat center center / 100%;
  2161. }
  2162.  
  2163. .list-table .list-table-data .data.image a[href*="/anime/25537/Fate_stay_night_Movie__Heavens_Feel_-_I_Presage_Flower"] {
  2164. background: url("https://myanimelist.cdn-dena.com/images/anime/5/87106.jpg") no-repeat center center / 100%;
  2165. }
  2166.  
  2167. .list-table .list-table-data .data.image a[href*="/anime/6922/Fate_stay_night_Movie__Unlimited_Blade_Works"] {
  2168. background: url("https://myanimelist.cdn-dena.com/images/anime/9/80350.jpg") no-repeat center center / 100%;
  2169. }
  2170.  
  2171. .list-table .list-table-data .data.image a[href*="/anime/22297/Fate_stay_night__Unlimited_Blade_Works"] {
  2172. background: url("https://myanimelist.cdn-dena.com/images/anime/12/67333.jpg") no-repeat center center / 100%;
  2173. }
  2174.  
  2175. .list-table .list-table-data .data.image a[href*="/anime/27821/Fate_stay_night__Unlimited_Blade_Works_-_Prologue"] {
  2176. background: url("https://myanimelist.cdn-dena.com/images/anime/9/67425.jpg") no-repeat center center / 100%;
  2177. }
  2178.  
  2179. .list-table .list-table-data .data.image a[href*="/anime/28701/Fate_stay_night__Unlimited_Blade_Works_2nd_Season"] {
  2180. background: url("https://myanimelist.cdn-dena.com/images/anime/11/72863.jpg") no-repeat center center / 100%;
  2181. }
  2182.  
  2183. .list-table .list-table-data .data.image a[href*="/anime/31389/Fate_stay_night__Unlimited_Blade_Works_2nd_Season_-_Sunny_Day"] {
  2184. background: url("https://myanimelist.cdn-dena.com/images/anime/2/73818.jpg") no-repeat center center / 100%;
  2185. }
  2186.  
  2187. .list-table .list-table-data .data.image a[href*="/anime/10087/Fate_Zero"] {
  2188. background: url("https://myanimelist.cdn-dena.com/images/anime/2/73249.jpg") no-repeat center center / 100%;
  2189. }
  2190.  
  2191. .list-table .list-table-data .data.image a[href*="/anime/11741/Fate_Zero_2nd_Season"] {
  2192. background: url("https://myanimelist.cdn-dena.com/images/anime/8/41125.jpg") no-repeat center center / 100%;
  2193. }
  2194.  
  2195. .list-table .list-table-data .data.image a[href*="/anime/13183/Fate_Zero_Remix"] {
  2196. background: url("https://myanimelist.cdn-dena.com/images/anime/6/37081.jpg") no-repeat center center / 100%;
  2197. }
  2198.  
  2199. .list-table .list-table-data .data.image a[href*="/anime/5114/Fullmetal_Alchemist__Brotherhood"] {
  2200. background: url("https://myanimelist.cdn-dena.com/images/anime/5/47421.jpg") no-repeat center center / 100%;
  2201. }
  2202.  
  2203. .list-table .list-table-data .data.image a[href*="/anime/6421/Fullmetal_Alchemist__Brotherhood_Specials"] {
  2204. background: url("https://myanimelist.cdn-dena.com/images/anime/7/59429.jpg") no-repeat center center / 100%;
  2205. }
  2206.  
  2207. .list-table .list-table-data .data.image a[href*="/anime/30544/Gakusen_Toshi_Asterisk"] {
  2208. background: url("https://myanimelist.cdn-dena.com/images/anime/5/76034.jpg") no-repeat center center / 100%;
  2209. }
  2210.  
  2211. .list-table .list-table-data .data.image a[href*="/anime/31737/Gakusen_Toshi_Asterisk_2nd_Season"] {
  2212. background: url("https://myanimelist.cdn-dena.com/images/anime/11/79107.jpg") no-repeat center center / 100%;
  2213. }
  2214.  
  2215. .list-table .list-table-data .data.image a[href*="/anime/14811/GJ-bu"] {
  2216. background: url("https://myanimelist.cdn-dena.com/images/anime/10/45995.jpg") no-repeat center center / 100%;
  2217. }
  2218.  
  2219. .list-table .list-table-data .data.image a[href*="/anime/21635/GJ-bu"] {
  2220. background: url("https://myanimelist.cdn-dena.com/images/anime/4/60319.jpg") no-repeat center center / 100%;
  2221. }
  2222.  
  2223. .list-table .list-table-data .data.image a[href*="/anime/27631/God_Eater"] {
  2224. background: url("https://myanimelist.cdn-dena.com/images/anime/7/73852.jpg") no-repeat center center / 100%;
  2225. }
  2226.  
  2227. .list-table .list-table-data .data.image a[href*="/anime/10470/God_Eater_Prologue"] {
  2228. background: url("https://myanimelist.cdn-dena.com/images/anime/12/49159.jpg") no-repeat center center / 100%;
  2229. }
  2230.  
  2231. .list-table .list-table-data .data.image a[href*="/anime/21431/Gokukoku_no_Brynhildr"] {
  2232. background: url("https://myanimelist.cdn-dena.com/images/anime/5/61433.jpg") no-repeat center center / 100%;
  2233. }
  2234.  
  2235. .list-table .list-table-data .data.image a[href*="/anime/17895/Golden_Time"] {
  2236. background: url("https://myanimelist.cdn-dena.com/images/anime/12/52091.jpg") no-repeat center center / 100%;
  2237. }
  2238.  
  2239. .list-table .list-table-data .data.image a[href*="/anime/37505/Grancrest_Senki_Tsuisou"] {
  2240. background: url("https://myanimelist.cdn-dena.com/images/anime/1795/91146.jpg") no-repeat center center / 100%;
  2241. }
  2242.  
  2243. .list-table .list-table-data .data.image a[href*="/anime/17729/Grisaia_no_Kajitsu"] {
  2244. background: url("https://myanimelist.cdn-dena.com/images/anime/10/73591.jpg") no-repeat center center / 100%;
  2245. }
  2246.  
  2247. .list-table .list-table-data .data.image a[href*="/anime/29101/Grisaia_no_Kajitsu_Specials"] {
  2248. background: url("https://myanimelist.cdn-dena.com/images/anime/9/71683.jpg") no-repeat center center / 100%;
  2249. }
  2250.  
  2251. .list-table .list-table-data .data.image a[href*="/anime/31324/Grisaia_no_Meikyuu_Special"] {
  2252. background: url("https://myanimelist.cdn-dena.com/images/anime/2/75328.jpg") no-repeat center center / 100%;
  2253. }
  2254.  
  2255. .list-table .list-table-data .data.image a[href*="/anime/29093/Grisaia_no_Meikyuu__Caprice_no_Mayu_0"] {
  2256. background: url("https://myanimelist.cdn-dena.com/images/anime/2/73152.jpg") no-repeat center center / 100%;
  2257. }
  2258.  
  2259. .list-table .list-table-data .data.image a[href*="/anime/29095/Grisaia_no_Rakuen"] {
  2260. background: url("https://myanimelist.cdn-dena.com/images/anime/8/72855.jpg") no-repeat center center / 100%;
  2261. }
  2262.  
  2263. .list-table .list-table-data .data.image a[href*="/anime/31368/Grisaia_no_Rakuen_Specials"] {
  2264. background: url("https://myanimelist.cdn-dena.com/images/anime/10/75439.jpg") no-repeat center center / 100%;
  2265. }
  2266.  
  2267. .list-table .list-table-data .data.image a[href*="/anime/10793/Guilty_Crown"] {
  2268. background: url("https://img.kjanime.net/Guilty_Crown_kjanime.jpg") no-repeat center center / 100%;
  2269. }
  2270.  
  2271. .list-table .list-table-data .data.image a[href*="/anime/13411/Guilty_Crown__Lost_Christmas"] {
  2272. background: url("https://myanimelist.cdn-dena.com/images/anime/7/80010.jpg") no-repeat center center / 100%;
  2273. }
  2274.  
  2275. .list-table .list-table-data .data.image a[href*="/anime/13161/Hagure_Yuusha_no_Aesthetica"] {
  2276. background: url("https://myanimelist.cdn-dena.com/images/anime/9/74047.jpg") no-repeat center center / 100%;
  2277. }
  2278.  
  2279. .list-table .list-table-data .data.image a[href*="/anime/15729/Hagure_Yuusha_no_Aesthetica__Hajirai_Ippai"] {
  2280. background: url("https://myanimelist.cdn-dena.com/images/anime/13/49827.jpg") no-repeat center center / 100%;
  2281. }
  2282.  
  2283. .list-table .list-table-data .data.image a[href*="/anime/21855/Hanamonogatari"] {
  2284. background: url("https://myanimelist.cdn-dena.com/images/anime/13/65755.jpg") no-repeat center center / 100%;
  2285. }
  2286.  
  2287. .list-table .list-table-data .data.image a[href*="/anime/15809/Hataraku_Maou-sama"] {
  2288. background: url("https://myanimelist.cdn-dena.com/images/anime/3/50177.jpg") no-repeat center center / 100%;
  2289. }
  2290.  
  2291. .list-table .list-table-data .data.image a[href*="/anime/777/Hellsing_Ultimate"] {
  2292. background: url("https://myanimelist.cdn-dena.com/images/anime/6/7333.jpg") no-repeat center center / 100%;
  2293. }
  2294.  
  2295. .list-table .list-table-data .data.image a[href*="/anime/11077/Hellsing__The_Dawn"] {
  2296. background: url("https://myanimelist.cdn-dena.com/images/anime/5/30667.jpg") no-repeat center center / 100%;
  2297. }
  2298.  
  2299. .list-table .list-table-data .data.image a[href*="/anime/15225/Hentai_Ouji_to_Warawanai_Neko"] {
  2300. background: url("https://myanimelist.cdn-dena.com/images/anime/3/75788.jpg") no-repeat center center / 100%;
  2301. }
  2302.  
  2303. .list-table .list-table-data .data.image a[href*="/anime/11617/High_School_DxD"] {
  2304. background: url("https://myanimelist.cdn-dena.com/images/anime/2/32527.jpg") no-repeat center center / 100%;
  2305. }
  2306.  
  2307. .list-table .list-table-data .data.image a[href*="/anime/24703/High_School_DxD_BorN"] {
  2308. background: url("https://myanimelist.cdn-dena.com/images/anime/12/73642.jpg") no-repeat center center / 100%;
  2309. }
  2310.  
  2311. .list-table .list-table-data .data.image a[href*="/anime/32215/High_School_DxD_BorN__Yomigaeranai_Fushichou"] {
  2312. background: url("https://myanimelist.cdn-dena.com/images/anime/7/77358.jpg") no-repeat center center / 100%;
  2313. }
  2314.  
  2315. .list-table .list-table-data .data.image a[href*="/anime/37719/High_School_DxD_Hero__Taiikukan-ura_no_Holy"] {
  2316. background: url("https://myanimelist.cdn-dena.com/images/anime/1960/91884.jpg") no-repeat center center / 100%;
  2317. }
  2318.  
  2319. .list-table .list-table-data .data.image a[href*="/anime/15451/High_School_DxD_New"] {
  2320. background: url("https://myanimelist.cdn-dena.com/images/anime/12/47729.jpg") no-repeat center center / 100%;
  2321. }
  2322.  
  2323. .list-table .list-table-data .data.image a[href*="/anime/30300/High_School_DxD_New__Oppai_Tsutsumimasu"] {
  2324. background: url("https://myanimelist.cdn-dena.com/images/anime/8/73605.jpg") no-repeat center center / 100%;
  2325. }
  2326.  
  2327. .list-table .list-table-data .data.image a[href*="/anime/12729/High_School_DxD_OVA"] {
  2328. background: url("https://myanimelist.cdn-dena.com/images/anime/13/63561.jpg") no-repeat center center / 100%;
  2329. }
  2330.  
  2331. .list-table .list-table-data .data.image a[href*="/anime/10408/Hotarubi_no_Mori_e"] {
  2332. background: url("https://myanimelist.cdn-dena.com/images/anime/8/38229.jpg") no-repeat center center / 100%;
  2333. }
  2334.  
  2335. .list-table .list-table-data .data.image a[href*="/anime/12189/Hyouka"] {
  2336. background: url("https://myanimelist.cdn-dena.com/images/anime/13/50521.jpg") no-repeat center center / 100%;
  2337. }
  2338.  
  2339. .list-table .list-table-data .data.image a[href*="/anime/13469/Hyouka__Motsubeki_Mono_wa"] {
  2340. background: url("https://myanimelist.cdn-dena.com/images/anime/6/50363.jpg") no-repeat center center / 100%;
  2341. }
  2342.  
  2343. .list-table .list-table-data .data.image a[href*="/anime/7088/Ichiban_Ushiro_no_Daimaou"] {
  2344. background: url("https://myanimelist.cdn-dena.com/images/anime/11/75554.jpg") no-repeat center center / 100%;
  2345. }
  2346.  
  2347. .list-table .list-table-data .data.image a[href*="/anime/34542/Inuyashiki"] {
  2348. background: url("https://myanimelist.cdn-dena.com/images/anime/7/88471.jpg") no-repeat center center / 100%;
  2349. }
  2350.  
  2351. .list-table .list-table-data .data.image a[href*="/anime/3731/Itazura_na_Kiss"] {
  2352. background: url("https://myanimelist.cdn-dena.com/images/anime/10/19933.jpg") no-repeat center center / 100%;
  2353. }
  2354.  
  2355. .list-table .list-table-data .data.image a[href*="/anime/2593/Kara_no_Kyoukai_1__Fukan_Fuukei"] {
  2356. background: url("https://myanimelist.cdn-dena.com/images/anime/12/21741.jpg") no-repeat center center / 100%;
  2357. }
  2358.  
  2359. .list-table .list-table-data .data.image a[href*="/anime/3782/Kara_no_Kyoukai_2__Satsujin_Kousatsu_Zen"] {
  2360. background: url("https://myanimelist.cdn-dena.com/images/anime/3/21737.jpg") no-repeat center center / 100%;
  2361. }
  2362.  
  2363. .list-table .list-table-data .data.image a[href*="/anime/3783/Kara_no_Kyoukai_3__Tsuukaku_Zanryuu"] {
  2364. background: url("https://myanimelist.cdn-dena.com/images/anime/4/21735.jpg") no-repeat center center / 100%;
  2365. }
  2366.  
  2367. .list-table .list-table-data .data.image a[href*="/anime/4280/Kara_no_Kyoukai_4__Garan_no_Dou"] {
  2368. background: url("https://myanimelist.cdn-dena.com/images/anime/9/21736.jpg") no-repeat center center / 100%;
  2369. }
  2370.  
  2371. .list-table .list-table-data .data.image a[href*="/anime/4282/Kara_no_Kyoukai_5__Mujun_Rasen"] {
  2372. background: url("https://myanimelist.cdn-dena.com/images/anime/8/9246.jpg") no-repeat center center / 100%;
  2373. }
  2374.  
  2375. .list-table .list-table-data .data.image a[href*="/anime/5204/Kara_no_Kyoukai_6__Boukyaku_Rokuon"] {
  2376. background: url("https://myanimelist.cdn-dena.com/images/anime/2/21739.jpg") no-repeat center center / 100%;
  2377. }
  2378.  
  2379. .list-table .list-table-data .data.image a[href*="/anime/5205/Kara_no_Kyoukai_7__Satsujin_Kousatsu_Kou"] {
  2380. background: url("https://myanimelist.cdn-dena.com/images/anime/9/56619.jpg") no-repeat center center / 100%;
  2381. }
  2382.  
  2383. .list-table .list-table-data .data.image a[href*="/anime/6954/Kara_no_Kyoukai_8__Shuushou"] {
  2384. background: url("https://myanimelist.cdn-dena.com/images/anime/3/52557.jpg") no-repeat center center / 100%;
  2385. }
  2386.  
  2387. .list-table .list-table-data .data.image a[href*="/anime/6624/Kara_no_Kyoukai_Remix__Gate_of_Seventh_Heaven"] {
  2388. background: url("https://myanimelist.cdn-dena.com/images/anime/11/15175.jpg") no-repeat center center / 100%;
  2389. }
  2390.  
  2391. .list-table .list-table-data .data.image a[href*="/anime/14807/Kara_no_Kyoukai__Mirai_Fukuin"] {
  2392. background: url("https://myanimelist.cdn-dena.com/images/anime/6/56621.jpg") no-repeat center center / 100%;
  2393. }
  2394.  
  2395. .list-table .list-table-data .data.image a[href*="/anime/22763/Kara_no_Kyoukai__Mirai_Fukuin_-_Extra_Chorus"] {
  2396. background: url("https://myanimelist.cdn-dena.com/images/anime/3/73930.jpg") no-repeat center center / 100%;
  2397. }
  2398.  
  2399. .list-table .list-table-data .data.image a[href*="/anime/1691/Kaze_no_Stigma"] {
  2400. background: url("https://myanimelist.cdn-dena.com/images/anime/12/23136.jpg") no-repeat center center / 100%;
  2401. }
  2402.  
  2403. .list-table .list-table-data .data.image a[href*="/anime/24439/Kekkai_Sensen"] {
  2404. background: url("https://myanimelist.cdn-dena.com/images/anime/12/73559.jpg") no-repeat center center / 100%;
  2405. }
  2406.  
  2407. .list-table .list-table-data .data.image a[href*="/anime/32574/Kekkai_Sensen__Ousama_no_Restaurant_no_Ousama"] {
  2408. background: url("https://myanimelist.cdn-dena.com/images/anime/11/72321.jpg") no-repeat center center / 100%;
  2409. }
  2410.  
  2411. .list-table .list-table-data .data.image a[href*="/anime/37364/Kekkai_Sensen___Beyond_OVA"] {
  2412. background: url("https://myanimelist.cdn-dena.com/images/anime/3/89553.jpg") no-repeat center center / 100%;
  2413. }
  2414.  
  2415. .list-table .list-table-data .data.image a[href*="/anime/34451/Kekkai_Sensen___Beyond"] {
  2416. background: url("https://myanimelist.cdn-dena.com/images/anime/3/88282.jpg") no-repeat center center / 100%;
  2417. }
  2418.  
  2419. .list-table .list-table-data .data.image a[href*="/anime/33/Kenpuu_Denki_Berserk"] {
  2420. background: url("https://myanimelist.cdn-dena.com/images/anime/12/18520.jpg") no-repeat center center / 100%;
  2421. }
  2422.  
  2423. .list-table .list-table-data .data.image a[href*="/anime/18679/Kill_la_Kill"] {
  2424. background: url("https://myanimelist.cdn-dena.com/images/anime/8/75514.jpg") no-repeat center center / 100%;
  2425. }
  2426.  
  2427. .list-table .list-table-data .data.image a[href*="/anime/21659/Kill_la_Kill_Specials"] {
  2428. background: url("https://myanimelist.cdn-dena.com/images/anime/12/73654.jpg") no-repeat center center / 100%;
  2429. }
  2430.  
  2431. .list-table .list-table-data .data.image a[href*="/anime/32281/Kimi_no_Na_wa"] {
  2432. background: url("https://myanimelist.cdn-dena.com/images/anime/5/87048.jpg") no-repeat center center / 100%;
  2433. }
  2434.  
  2435. .list-table .list-table-data .data.image a[href*="/anime/7593/Kiss_x_Sis_TV"] {
  2436. background: url("https://myanimelist.cdn-dena.com/images/anime/3/25518.jpg") no-repeat center center / 100%;
  2437. }
  2438.  
  2439. .list-table .list-table-data .data.image a[href*="/anime/9260/Kizumonogatari_I__Tekketsu-hen"] {
  2440. background: url("https://myanimelist.cdn-dena.com/images/anime/12/76485.jpg") no-repeat center center / 100%;
  2441. }
  2442.  
  2443. .list-table .list-table-data .data.image a[href*="/anime/31757/Kizumonogatari_II__Nekketsu-hen"] {
  2444. background: url("https://myanimelist.cdn-dena.com/images/anime/8/80930.jpg") no-repeat center center / 100%;
  2445. }
  2446.  
  2447. .list-table .list-table-data .data.image a[href*="/anime/31758/Kizumonogatari_III__Reiketsu-hen"] {
  2448. background: url("https://myanimelist.cdn-dena.com/images/anime/8/82911.jpg") no-repeat center center / 100%;
  2449. }
  2450.  
  2451. .list-table .list-table-data .data.image a[href*="/anime/28851/Koe_no_Katachi"] {
  2452. background: url("https://myanimelist.cdn-dena.com/images/anime/3/80136.jpg") no-repeat center center / 100%;
  2453. }
  2454.  
  2455. .list-table .list-table-data .data.image a[href*="/anime/36548/Kokkoku"] {
  2456. background: url("https://myanimelist.cdn-dena.com/images/anime/8/89987.jpg") no-repeat center center / 100%;
  2457. }
  2458.  
  2459. .list-table .list-table-data .data.image a[href*="/anime/11887/Kokoro_Connect"] {
  2460. background: url("https://myanimelist.cdn-dena.com/images/anime/2/39665.jpg") no-repeat center center / 100%;
  2461. }
  2462.  
  2463. .list-table .list-table-data .data.image a[href*="/anime/16001/Kokoro_Connect__Michi_Random"] {
  2464. background: url("https://myanimelist.cdn-dena.com/images/anime/10/45526.jpg") no-repeat center center / 100%;
  2465. }
  2466.  
  2467. .list-table .list-table-data .data.image a[href*="/anime/16782/Kotonoha_no_Niwa"] {
  2468. background: url("https://myanimelist.cdn-dena.com/images/anime/8/79676.jpg") no-repeat center center / 100%;
  2469. }
  2470.  
  2471. .list-table .list-table-data .data.image a[href*="/anime/32268/Koyomimonogatari"] {
  2472. background: url("https://myanimelist.cdn-dena.com/images/anime/2/77744.jpg") no-repeat center center / 100%;
  2473. }
  2474.  
  2475. .list-table .list-table-data .data.image a[href*="/anime/32949/Kuzu_no_Honkai"] {
  2476. background: url("https://myanimelist.cdn-dena.com/images/anime/5/83937.jpg") no-repeat center center / 100%;
  2477. }
  2478.  
  2479. .list-table .list-table-data .data.image a[href*="/anime/18153/Kyoukai_no_Kanata"] {
  2480. background: url("https://myanimelist.cdn-dena.com/images/anime/3/85468.jpg") no-repeat center center / 100%;
  2481. }
  2482.  
  2483. .list-table .list-table-data .data.image a[href*="/anime/25015/Kyoukai_no_Kanata_Movie_1__Ill_Be_Here_-_Kako-hen"] {
  2484. background: url("https://myanimelist.cdn-dena.com/images/anime/6/73298.jpg") no-repeat center center / 100%;
  2485. }
  2486.  
  2487. .list-table .list-table-data .data.image a[href*="/anime/28675/Kyoukai_no_Kanata_Movie_2__Ill_Be_Here_-_Mirai-hen"] {
  2488. background: url("https://myanimelist.cdn-dena.com/images/anime/9/72614.jpg") no-repeat center center / 100%;
  2489. }
  2490.  
  2491. .list-table .list-table-data .data.image a[href*="/anime/30745/Kyoukai_no_Kanata_Movie__Ill_Be_Here_-_Kako-hen_-_Yakusoku_no_Kizuna"] {
  2492. background: url("https://myanimelist.cdn-dena.com/images/anime/13/73894.jpg") no-repeat center center / 100%;
  2493. }
  2494.  
  2495. .list-table .list-table-data .data.image a[href*="/anime/23385/Kyoukai_no_Kanata__Shinonome"] {
  2496. background: url("https://myanimelist.cdn-dena.com/images/anime/2/63205.jpg") no-repeat center center / 100%;
  2497. }
  2498.  
  2499. .list-table .list-table-data .data.image a[href*="/anime/24455/Madan_no_Ou_to_Vanadis"] {
  2500. background: url("https://myanimelist.cdn-dena.com/images/anime/3/64911.jpg") no-repeat center center / 100%;
  2501. }
  2502.  
  2503. .list-table .list-table-data .data.image a[href*="/anime/34599/Made_in_Abyss"] {
  2504. background: url("https://myanimelist.cdn-dena.com/images/anime/1922/91900.jpg") no-repeat center center / 100%;
  2505. }
  2506.  
  2507. .list-table .list-table-data .data.image a[href*="/anime/20785/Mahouka_Koukou_no_Rettousei"] {
  2508. background: url("https://myanimelist.cdn-dena.com/images/anime/11/61039.jpg") no-repeat center center / 100%;
  2509. }
  2510.  
  2511. .list-table .list-table-data .data.image a[href*="/anime/32900/Mahouka_Koukou_no_Rettousei_Movie__Hoshi_wo_Yobu_Shoujo"] {
  2512. background: url("https://myanimelist.cdn-dena.com/images/anime/4/84385l.jpg") no-repeat center center / 100%;
  2513. }
  2514.  
  2515. .list-table .list-table-data .data.image a[href*="/anime/33487/Masamune-kun_no_Revenge"] {
  2516. background: url("https://myanimelist.cdn-dena.com/images/anime/12/83709.jpg") no-repeat center center / 100%;
  2517. }
  2518.  
  2519. .list-table .list-table-data .data.image a[href*="/anime/10110/Mayo_Chiki"] {
  2520. background: url("https://myanimelist.cdn-dena.com/images/anime/13/29971.jpg") no-repeat center center / 100%;
  2521. }
  2522.  
  2523. .list-table .list-table-data .data.image a[href*="/anime/1462/Memories"] {
  2524. background: url("https://myanimelist.cdn-dena.com/images/anime/9/74781.jpg") no-repeat center center / 100%;
  2525. }
  2526.  
  2527. .list-table .list-table-data .data.image a[href*="/anime/10620/Mirai_Nikki_TV"] {
  2528. background: url("https://myanimelist.cdn-dena.com/images/anime/13/33465.jpg") no-repeat center center / 100%;
  2529. }
  2530.  
  2531. .list-table .list-table-data .data.image a[href*="/anime/12503/Mirai_Nikki_TV__Ura_Mirai_Nikki"] {
  2532. background: url("https://myanimelist.cdn-dena.com/images/anime/9/35551.jpg") no-repeat center center / 100%;
  2533. }
  2534.  
  2535. .list-table .list-table-data .data.image a[href*="/anime/16762/Mirai_Nikki__Redial"] {
  2536. background: url("https://myanimelist.cdn-dena.com/images/anime/3/53247.jpg") no-repeat center center / 100%;
  2537. }
  2538.  
  2539. .list-table .list-table-data .data.image a[href*="/anime/32182/Mob_Psycho_100"] {
  2540. background: url("https://myanimelist.cdn-dena.com/images/anime/8/80356.jpg") no-repeat center center / 100%;
  2541. }
  2542.  
  2543. .list-table .list-table-data .data.image a[href*="/anime/17074/Monogatari_Series__Second_Season"] {
  2544. background: url("https://myanimelist.cdn-dena.com/images/anime/3/52133.jpg") no-repeat center center / 100%;
  2545. }
  2546.  
  2547. .list-table .list-table-data .data.image a[href*="/anime/164/Mononoke_Hime"] {
  2548. background: url("https://myanimelist.cdn-dena.com/images/anime/7/75919.jpg") no-repeat center center / 100%;
  2549. }
  2550.  
  2551. .list-table .list-table-data .data.image a[href*="/anime/9181/Motto_To_LOVE-Ru"] {
  2552. background: url("https://myanimelist.cdn-dena.com/images/anime/4/59875.jpg") no-repeat center center / 100%;
  2553. }
  2554.  
  2555. .list-table .list-table-data .data.image a[href*="/anime/457/Mushishi"] {
  2556. background: url("https://myanimelist.cdn-dena.com/images/anime/2/73862.jpg") no-repeat center center / 100%;
  2557. }
  2558.  
  2559. .list-table .list-table-data .data.image a[href*="/anime/21329/Mushishi_Special__Hihamukage"] {
  2560. background: url("https://myanimelist.cdn-dena.com/images/anime/10/59315.jpg") no-repeat center center / 100%;
  2561. }
  2562.  
  2563. .list-table .list-table-data .data.image a[href*="/anime/21939/Mushishi_Zoku_Shou"] {
  2564. background: url("https://myanimelist.cdn-dena.com/images/anime/13/58533.jpg") no-repeat center center / 100%;
  2565. }
  2566.  
  2567. .list-table .list-table-data .data.image a[href*="/anime/24701/Mushishi_Zoku_Shou_2nd_Season"] {
  2568. background: url("https://myanimelist.cdn-dena.com/images/anime/9/68095.jpg") no-repeat center center / 100%;
  2569. }
  2570.  
  2571. .list-table .list-table-data .data.image a[href*="/anime/24687/Mushishi_Zoku_Shou__Odoro_no_Michi"] {
  2572. background: url("https://myanimelist.cdn-dena.com/images/anime/8/63539.jpg") no-repeat center center / 100%;
  2573. }
  2574.  
  2575. .list-table .list-table-data .data.image a[href*="/anime/28957/Mushishi_Zoku_Shou__Suzu_no_Shizuku"] {
  2576. background: url("https://myanimelist.cdn-dena.com/images/anime/9/72689.jpg") no-repeat center center / 100%;
  2577. }
  2578.  
  2579. .list-table .list-table-data .data.image a[href*="/anime/16067/Nagi_no_Asukara"] {
  2580. background: url("https://myanimelist.cdn-dena.com/images/anime/7/53549.jpg") no-repeat center center / 100%;
  2581. }
  2582.  
  2583. .list-table .list-table-data .data.image a[href*="/anime/20/Naruto"] {
  2584. background: url("https://myanimelist.cdn-dena.com/images/anime/13/17405.jpg") no-repeat center center / 100%;
  2585. }
  2586.  
  2587. .list-table .list-table-data .data.image a[href*="/anime/10075/Naruto_x_UT"] {
  2588. background: url("https://myanimelist.cdn-dena.com/images/anime/3/30485.jpg") no-repeat center center / 100%;
  2589. }
  2590.  
  2591. .list-table .list-table-data .data.image a[href*="/anime/1735/Naruto__Shippuuden"] {
  2592. background: url("https://myanimelist.cdn-dena.com/images/anime/5/17407.jpg") no-repeat center center / 100%;
  2593. }
  2594.  
  2595. .list-table .list-table-data .data.image a[href*="/anime/12467/Nazo_no_Kanojo_X"] {
  2596. background: url("https://myanimelist.cdn-dena.com/images/anime/3/75205.jpg") no-repeat center center / 100%;
  2597. }
  2598.  
  2599. .list-table .list-table-data .data.image a[href*="/anime/15689/Nekomonogatari__Kuro"] {
  2600. background: url("https://myanimelist.cdn-dena.com/images/anime/4/84001.jpg") no-repeat center center / 100%;
  2601. }
  2602.  
  2603. .list-table .list-table-data .data.image a[href*="/anime/18897/Nisekoi"] {
  2604. background: url("https://myanimelist.cdn-dena.com/images/anime/13/75587.jpg") no-repeat center center / 100%;
  2605. }
  2606.  
  2607. .list-table .list-table-data .data.image a[href*="/anime/27787/Nisekoi_"] {
  2608. background: url("https://myanimelist.cdn-dena.com/images/anime/13/72626.jpg") no-repeat center center / 100%;
  2609. }
  2610.  
  2611. .list-table .list-table-data .data.image a[href*="/anime/11597/Nisemonogatari"] {
  2612. background: url("https://myanimelist.cdn-dena.com/images/anime/10/35619.jpg") no-repeat center center / 100%;
  2613. }
  2614.  
  2615. .list-table .list-table-data .data.image a[href*="/anime/19815/No_Game_No_Life"] {
  2616. background: url("https://myanimelist.cdn-dena.com/images/anime/5/65187.jpg") no-repeat center center / 100%;
  2617. }
  2618.  
  2619. .list-table .list-table-data .data.image a[href*="/anime/33674/No_Game_No_Life__Zero"] {
  2620. background: url("https://myanimelist.cdn-dena.com/images/anime/1085/90759.jpg") no-repeat center center / 100%;
  2621. }
  2622.  
  2623. .list-table .list-table-data .data.image a[href*="/anime/20507/Noragami"] {
  2624. background: url("https://myanimelist.cdn-dena.com/images/anime/9/77809.jpg") no-repeat center center / 100%;
  2625. }
  2626.  
  2627. .list-table .list-table-data .data.image a[href*="/anime/30503/Noragami_Aragoto"] {
  2628. background: url("https://myanimelist.cdn-dena.com/images/anime/4/75627.jpg") no-repeat center center / 100%;
  2629. }
  2630.  
  2631. .list-table .list-table-data .data.image a[href*="/anime/30885/Noragami_Aragoto_OVA"] {
  2632. background: url("https://myanimelist.cdn-dena.com/images/anime/11/77510.jpg") no-repeat center center / 100%;
  2633. }
  2634.  
  2635. .list-table .list-table-data .data.image a[href*="/anime/20767/Noragami_OVA"] {
  2636. background: url("https://myanimelist.cdn-dena.com/images/anime/6/75876.jpg") no-repeat center center / 100%;
  2637. }
  2638.  
  2639. .list-table .list-table-data .data.image a[href*="/anime/22539/One_More_Time_One_More_Chance"] {
  2640. background: url("https://myanimelist.cdn-dena.com/images/anime/4/21915.jpg") no-repeat center center / 100%;
  2641. }
  2642.  
  2643. .list-table .list-table-data .data.image a[href*="/anime/34392/One_Room"] {
  2644. background: url("https://myanimelist.cdn-dena.com/images/anime/9/83777.jpg") no-repeat center center / 100%;
  2645. }
  2646.  
  2647. .list-table .list-table-data .data.image a[href*="/anime/14749/Ore_no_Kanojo_to_Osananajimi_ga_Shuraba_Sugiru"] {
  2648. background: url("https://myanimelist.cdn-dena.com/images/anime/13/44187.jpg") no-repeat center center / 100%;
  2649. }
  2650.  
  2651. .list-table .list-table-data .data.image a[href*="/anime/31181/Owarimonogatari"] {
  2652. background: url("https://myanimelist.cdn-dena.com/images/anime/8/76479.jpg") no-repeat center center / 100%;
  2653. }
  2654.  
  2655. .list-table .list-table-data .data.image a[href*="/anime/35247/Owarimonogatari_2nd_Season"] {
  2656. background: url("https://myanimelist.cdn-dena.com/images/anime/6/87322.jpg") no-repeat center center / 100%;
  2657. }
  2658.  
  2659. .list-table .list-table-data .data.image a[href*="/anime/770/Pale_Cocoon"] {
  2660. background: url("https://myanimelist.cdn-dena.com/images/anime/2/3211.jpg") no-repeat center center / 100%;
  2661. }
  2662.  
  2663. .list-table .list-table-data .data.image a[href*="/anime/437/Perfect_Blue"] {
  2664. background: url("https://myanimelist.cdn-dena.com/images/anime/7/58303.jpg") no-repeat center center / 100%;
  2665. }
  2666.  
  2667. .list-table .list-table-data .data.image a[href*="/anime/14407/Persona_3_the_Movie_1__Spring_of_Birth"] {
  2668. background: url("https://myanimelist.cdn-dena.com/images/anime/6/55287.jpg") no-repeat center center / 100%;
  2669. }
  2670.  
  2671. .list-table .list-table-data .data.image a[href*="/anime/21473/Persona_3_the_Movie_2__Midsummer_Knights_Dream"] {
  2672. background: url("https://myanimelist.cdn-dena.com/images/anime/11/61681.jpg") no-repeat center center / 100%;
  2673. }
  2674.  
  2675. .list-table .list-table-data .data.image a[href*="/anime/24543/Persona_3_the_Movie_3__Falling_Down"] {
  2676. background: url("https://myanimelist.cdn-dena.com/images/anime/7/70395.jpg") no-repeat center center / 100%;
  2677. }
  2678.  
  2679. .list-table .list-table-data .data.image a[href*="/anime/31149/Persona_3_the_Movie_4__Winter_of_Rebirth"] {
  2680. background: url("https://myanimelist.cdn-dena.com/images/anime/9/77828.jpg") no-repeat center center / 100%;
  2681. }
  2682.  
  2683. .list-table .list-table-data .data.image a[href*="/anime/27775/Plastic_Memories"] {
  2684. background: url("https://myanimelist.cdn-dena.com/images/anime/4/72750.jpg") no-repeat center center / 100%;
  2685. }
  2686.  
  2687. .list-table .list-table-data .data.image a[href*="/anime/6114/Rainbow__Nisha_Rokubou_no_Shichinin"] {
  2688. background: url("https://myanimelist.cdn-dena.com/images/anime/9/72697.jpg") no-repeat center center / 100%;
  2689. }
  2690.  
  2691. .list-table .list-table-data .data.image a[href*="/anime/30296/Rakudai_Kishi_no_Cavalry"] {
  2692. background: url("https://myanimelist.cdn-dena.com/images/anime/9/76493.jpg") no-repeat center center / 100%;
  2693. }
  2694.  
  2695. .list-table .list-table-data .data.image a[href*="/anime/33569/Re_Petit_kara_Hajimeru_Isekai_Seikatsu"] {
  2696. background: url("https://myanimelist.cdn-dena.com/images/anime/6/76191.jpg") no-repeat center center / 100%;
  2697. }
  2698.  
  2699. .list-table .list-table-data .data.image a[href*="/anime/33142/Re_Zero_kara_Hajimeru_Break_Time"] {
  2700. background: url("https://myanimelist.cdn-dena.com/images/anime/7/80832.jpg") no-repeat center center / 100%;
  2701. }
  2702.  
  2703. .list-table .list-table-data .data.image a[href*="/anime/31240/Re_Zero_kara_Hajimeru_Isekai_Seikatsu"] {
  2704. background: url("https://myanimelist.cdn-dena.com/images/anime/11/79410.jpg") no-repeat center center / 100%;
  2705. }
  2706.  
  2707. .list-table .list-table-data .data.image a[href*="/anime/30015/ReLIFE"] {
  2708. background: url("https://myanimelist.cdn-dena.com/images/anime/3/82149.jpg") no-repeat center center / 100%;
  2709. }
  2710.  
  2711. .list-table .list-table-data .data.image a[href*="/anime/35466/ReLIFE__Kanketsu-hen"] {
  2712. background: url("https://myanimelist.cdn-dena.com/images/anime/1566/91061.jpg") no-repeat center center / 100%;
  2713. }
  2714.  
  2715. .list-table .list-table-data .data.image a[href*="/anime/23277/Saenai_Heroine_no_Sodatekata"] {
  2716. background: url("https://myanimelist.cdn-dena.com/images/anime/7/68783.jpg") no-repeat center center / 100%;
  2717. }
  2718.  
  2719. .list-table .list-table-data .data.image a[href*="/anime/30727/Saenai_Heroine_no_Sodatekata_\266d"] {
  2720. background: url("https://myanimelist.cdn-dena.com/images/anime/2/84797.jpg") no-repeat center center / 100%;
  2721. }
  2722.  
  2723. .list-table .list-table-data .data.image a[href*="/anime/35338/Saenai_Heroine_no_Sodatekata_\266d__Koi_to_Junjou_no_Service-kai"] {
  2724. background: url("https://myanimelist.cdn-dena.com/images/anime/5/86672.jpg") no-repeat center center / 100%;
  2725. }
  2726.  
  2727. .list-table .list-table-data .data.image a[href*="/anime/29317/Saenai_Heroine_no_Sodatekata__Ai_to_Seishun_no_Service-kai"] {
  2728. background: url("https://myanimelist.cdn-dena.com/images/anime/6/70493.jpg") no-repeat center center / 100%;
  2729. }
  2730.  
  2731. .list-table .list-table-data .data.image a[href*="/anime/13759/Sakurasou_no_Pet_na_Kanojo"] {
  2732. background: url("https://myanimelist.cdn-dena.com/images/anime/4/43643.jpg") no-repeat center center / 100%;
  2733. }
  2734.  
  2735. .list-table .list-table-data .data.image a[href*="/anime/11499/Sankarea"] {
  2736. background: url("https://myanimelist.cdn-dena.com/images/anime/13/79033.jpg") no-repeat center center / 100%;
  2737. }
  2738.  
  2739. .list-table .list-table-data .data.image a[href*="/anime/13055/Sankarea_OVA"] {
  2740. background: url("https://myanimelist.cdn-dena.com/images/anime/4/79032.jpg") no-repeat center center / 100%;
  2741. }
  2742.  
  2743. .list-table .list-table-data .data.image a[href*="/anime/16694/Sankarea__Wagahai_mo_Zombie_de_Aru"] {
  2744. background: url("https://myanimelist.cdn-dena.com/images/anime/12/44918.jpg") no-repeat center center / 100%;
  2745. }
  2746.  
  2747. .list-table .list-table-data .data.image a[href*="/anime/22877/Seireitsukai_no_Blade_Dance"] {
  2748. background: url("https://myanimelist.cdn-dena.com/images/anime/7/63031.jpg") no-repeat center center / 100%;
  2749. }
  2750.  
  2751. .list-table .list-table-data .data.image a[href*="/anime/34240/Shelter"] {
  2752. background: url("https://myanimelist.cdn-dena.com/images/anime/5/82388.jpg") no-repeat center center / 100%;
  2753. }
  2754.  
  2755. .list-table .list-table-data .data.image a[href*="/anime/23273/Shigatsu_wa_Kimi_no_Uso"] {
  2756. background: url("https://myanimelist.cdn-dena.com/images/anime/3/67177.jpg") no-repeat center center / 100%;
  2757. }
  2758.  
  2759. .list-table .list-table-data .data.image a[href*="/anime/16498/Shingeki_no_Kyojin"] {
  2760. background: url("https://myanimelist.cdn-dena.com/images/anime/10/47347.jpg") no-repeat center center / 100%;
  2761. }
  2762.  
  2763. .list-table .list-table-data .data.image a[href*="/anime/25777/Shingeki_no_Kyojin_Season_2"] {
  2764. background: url("https://myanimelist.cdn-dena.com/images/anime/4/84177.jpg") no-repeat center center / 100%;
  2765. }
  2766.  
  2767. .list-table .list-table-data .data.image a[href*="/anime/169/Shingetsutan_Tsukihime"] {
  2768. background: url("https://myanimelist.cdn-dena.com/images/anime/12/20669.jpg") no-repeat center center / 100%;
  2769. }
  2770.  
  2771. .list-table .list-table-data .data.image a[href*="/anime/23233/Shinmai_Maou_no_Testament"] {
  2772. background: url("https://myanimelist.cdn-dena.com/images/anime/6/67627.jpg") no-repeat center center / 100%;
  2773. }
  2774.  
  2775. .list-table .list-table-data .data.image a[href*="/anime/30363/Shinmai_Maou_no_Testament_Burst"] {
  2776. background: url("https://myanimelist.cdn-dena.com/images/anime/12/76476.jpg") no-repeat center center / 100%;
  2777. }
  2778.  
  2779. .list-table .list-table-data .data.image a[href*="/anime/30365/Shinmai_Maou_no_Testament_Burst_OVA"] {
  2780. background: url("https://myanimelist.cdn-dena.com/images/anime/8/81185.jpg") no-repeat center center / 100%;
  2781. }
  2782.  
  2783. .list-table .list-table-data .data.image a[href*="/anime/36688/Shinmai_Maou_no_Testament_Departures"] {
  2784. background: url("https://myanimelist.cdn-dena.com/images/anime/1110/91029.jpg") no-repeat center center / 100%;
  2785. }
  2786.  
  2787. .list-table .list-table-data .data.image a[href*="/anime/29027/Shinmai_Maou_no_Testament_OVA"] {
  2788. background: url("https://myanimelist.cdn-dena.com/images/anime/12/69911.jpg") no-repeat center center / 100%;
  2789. }
  2790.  
  2791. .list-table .list-table-data .data.image a[href*="/anime/13125/Shinsekai_yori"] {
  2792. background: url("https://myanimelist.cdn-dena.com/images/anime/12/36775.jpg") no-repeat center center / 100%;
  2793. }
  2794.  
  2795. .list-table .list-table-data .data.image a[href*="/anime/28171/Shokugeki_no_Souma"] {
  2796. background: url("https://myanimelist.cdn-dena.com/images/anime/3/72943.jpg") no-repeat center center / 100%;
  2797. }
  2798.  
  2799. .list-table .list-table-data .data.image a[href*="/anime/31327/Shokugeki_no_Souma_OVA"] {
  2800. background: url("https://myanimelist.cdn-dena.com/images/anime/13/76427.jpg") no-repeat center center / 100%;
  2801. }
  2802.  
  2803. .list-table .list-table-data .data.image a[href*="/anime/32282/Shokugeki_no_Souma__Ni_no_Sara"] {
  2804. background: url("https://myanimelist.cdn-dena.com/images/anime/8/79353.jpg") no-repeat center center / 100%;
  2805. }
  2806.  
  2807. .list-table .list-table-data .data.image a[href*="/anime/34480/Shokugeki_no_Souma__Ni_no_Sara_OVA"] {
  2808. background: url("https://myanimelist.cdn-dena.com/images/anime/3/85622.jpg") no-repeat center center / 100%;
  2809. }
  2810.  
  2811. .list-table .list-table-data .data.image a[href*="/anime/35788/Shokugeki_no_Souma__San_no_Sara"] {
  2812. background: url("https://myanimelist.cdn-dena.com/images/anime/3/88434.jpg") no-repeat center center / 100%;
  2813. }
  2814.  
  2815. .list-table .list-table-data .data.image a[href*="/anime/36962/Shokugeki_no_Souma__San_no_Sara_-_Kyokuseiryou_no_Erina"] {
  2816. background: url("https://myanimelist.cdn-dena.com/images/anime/1281/92829.jpg") no-repeat center center / 100%;
  2817. }
  2818.  
  2819. .list-table .list-table-data .data.image a[href*="/anime/9253/Steins_Gate"] {
  2820. background: url("https://myanimelist.cdn-dena.com/images/anime/5/73199.jpg") no-repeat center center / 100%;
  2821. }
  2822.  
  2823. .list-table .list-table-data .data.image a[href*="/anime/11577/Steins_Gate_Movie__Fuka_Ryouiki_no_D\00e9j\00e0_vu"] {
  2824. background: url("https://myanimelist.cdn-dena.com/images/anime/3/50317.jpg") no-repeat center center / 100%;
  2825. }
  2826.  
  2827. .list-table .list-table-data .data.image a[href*="/anime/32188/Steins_Gate__Kyoukaimenjou_no_Missing_Link_-_Divide_By_Zero"] {
  2828. background: url("https://myanimelist.cdn-dena.com/images/anime/7/77324.jpg") no-repeat center center / 100%;
  2829. }
  2830.  
  2831. .list-table .list-table-data .data.image a[href*="/anime/10863/Steins_Gate__Oukoubakko_no_Poriomania"] {
  2832. background: url("https://myanimelist.cdn-dena.com/images/anime/7/36531.jpg") no-repeat center center / 100%;
  2833. }
  2834.  
  2835. .list-table .list-table-data .data.image a[href*="/anime/14617/Stranger__Mukou_Hadan_Pilot"] {
  2836. background: url("https://myanimelist.cdn-dena.com/images/anime/2/40079.jpg") no-repeat center center / 100%;
  2837. }
  2838.  
  2839. .list-table .list-table-data .data.image a[href*="/anime/2418/Stranger__Mukou_Hadan"] {
  2840. background: url("https://myanimelist.cdn-dena.com/images/anime/3/18934.jpg") no-repeat center center / 100%;
  2841. }
  2842.  
  2843. .list-table .list-table-data .data.image a[href*="/anime/27783/Sword_Gai__The_Animation"] {
  2844. background: url("https://myanimelist.cdn-dena.com/images/anime/7/89759.jpg") no-repeat center center / 100%;
  2845. }
  2846.  
  2847. .list-table .list-table-data .data.image a[href*="/anime/12445/Tasogare_Otome_x_Amnesia"] {
  2848. background: url("https://myanimelist.cdn-dena.com/images/anime/12/64435.jpg") no-repeat center center / 100%;
  2849. }
  2850.  
  2851. .list-table .list-table-data .data.image a[href*="/anime/14189/Tasogare_Otome_x_Amnesia__Taima_Otome"] {
  2852. background: url("https://myanimelist.cdn-dena.com/images/anime/6/65883.jpg") no-repeat center center / 100%;
  2853. }
  2854.  
  2855. .list-table .list-table-data .data.image a[href*="/anime/16870/The_Last__Naruto_the_Movie"] {
  2856. background: url("https://myanimelist.cdn-dena.com/images/anime/10/67631.jpg") no-repeat center center / 100%;
  2857. }
  2858.  
  2859. .list-table .list-table-data .data.image a[href*="/anime/3455/To_LOVE-Ru"] {
  2860. background: url("https://myanimelist.cdn-dena.com/images/anime/13/22544.jpg") no-repeat center center / 100%;
  2861. }
  2862. .list-table .list-table-data .data.image a[href*="/anime/13663/To_LOVE-Ru_Darkness"] {
  2863. background: url("https://myanimelist.cdn-dena.com/images/anime/8/42217.jpg") no-repeat center center / 100%;
  2864. }
  2865.  
  2866. .list-table .list-table-data .data.image a[href*="/anime/28979/To_LOVE-Ru_Darkness_2nd"] {
  2867. background: url("https://myanimelist.cdn-dena.com/images/anime/5/69847.jpg") no-repeat center center / 100%;
  2868. }
  2869.  
  2870. .list-table .list-table-data .data.image a[href*="/anime/31711/To_LOVE-Ru_Darkness_2nd_Specials"] {
  2871. background: url("https://myanimelist.cdn-dena.com/images/anime/9/79330.jpg") no-repeat center center / 100%;
  2872. }
  2873.  
  2874. .list-table .list-table-data .data.image a[href*="/anime/5667/To_LOVE-Ru_OVA"] {
  2875. background: url("https://myanimelist.cdn-dena.com/images/anime/2/17923.jpg") no-repeat center center / 100%;
  2876. }
  2877.  
  2878. .list-table .list-table-data .data.image a[href*="/anime/35000/To_LOVE-Ru__Multiplication_-_Mae_kara_Ushiro_kara"] {
  2879. background: url("https://myanimelist.cdn-dena.com/images/anime/3/87158.jpg") no-repeat center center / 100%;
  2880. }
  2881.  
  2882. .list-table .list-table-data .data.image a[href*="/anime/22319/Tokyo_Ghoul"] {
  2883. background: url("https://myanimelist.cdn-dena.com/images/anime/5/64449.jpg") no-repeat center center / 100%;
  2884. }
  2885.  
  2886. .list-table .list-table-data .data.image a[href*="/anime/27899/Tokyo_Ghoul_√A"] {
  2887. background: url("https://myanimelist.cdn-dena.com/images/anime/13/71777.jpg") no-repeat center center / 100%;
  2888. }
  2889.  
  2890. .list-table .list-table-data .data.image a[href*="/anime/30458/Tokyo_Ghoul__Jack"] {
  2891. background: url("https://myanimelist.cdn-dena.com/images/anime/13/76048.jpg") no-repeat center center / 100%;
  2892. }
  2893.  
  2894. .list-table .list-table-data .data.image a[href*="/anime/31297/Tokyo_Ghoul__Pinto"] {
  2895. background: url("https://myanimelist.cdn-dena.com/images/anime/3/78666.jpg") no-repeat center center / 100%;
  2896. }
  2897.  
  2898. .list-table .list-table-data .data.image a[href*="/anime/14227/Tonari_no_Kaibutsu-kun"] {
  2899. background: url("https://myanimelist.cdn-dena.com/images/anime/4/39779.jpg") no-repeat center center / 100%;
  2900. }
  2901.  
  2902. .list-table .list-table-data .data.image a[href*="/anime/4224/Toradora"] {
  2903. background: url("https://myanimelist.cdn-dena.com/images/anime/13/22128.jpg") no-repeat center center / 100%;
  2904. }
  2905.  
  2906. .list-table .list-table-data .data.image a[href*="/anime/5356/Canaan"] {
  2907. background: url("https://myanimelist.cdn-dena.com/images/anime/4/75789.jpg") no-repeat center center / 100%;
  2908. }
  2909.  
  2910. .list-table .list-table-data .data.image a[href*="/anime/9706/Canaan__Minorikawa_Report_201X_Shanghai"] {
  2911. background: url("https://i.pinimg.com/736x/fe/d8/14/fed814a3809caa10e4ba4eda32fe2d4a--canaan-anime-anime-episodes.jpg") no-repeat center center / 100%;
  2912. }
  2913.  
  2914. .list-table .list-table-data .data.image a[href*="/anime/2167/Clannad"] {
  2915. background: url("https://myanimelist.cdn-dena.com/images/anime/13/8498.jpg") no-repeat center center / 100%;
  2916. }
  2917.  
  2918. .list-table .list-table-data .data.image a[href*="/anime/4059/Clannad__Mou_Hitotsu_no_Sekai_Tomoyo-hen"] {
  2919. background: url("https://myanimelist.cdn-dena.com/images/anime/12/19620.jpg") no-repeat center center / 100%;
  2920. }
  2921.  
  2922. .list-table .list-table-data .data.image a[href*="/anime/6351/Clannad__After_Story_-_Mou_Hitotsu_no_Sekai_Kyou-hen"] {
  2923. background: url("https://myanimelist.cdn-dena.com/images/anime/10/19621.jpg") no-repeat center center / 100%;
  2924. }
  2925.  
  2926. .list-table .list-table-data .data.image a[href*="/anime/37885/Dragon_Ball_Heroes"] {
  2927. background: url("https://myanimelist.cdn-dena.com/images/anime/1480/92990.jpg") no-repeat center center / 100%;
  2928. }
  2929.  
  2930. .list-table .list-table-data .data.image a[href*="/anime/2924/ef__A_Tale_of_Memories"] {
  2931. background: url("https://myanimelist.cdn-dena.com/images/anime/11/50411.jpg") no-repeat center center / 100%;
  2932. }
  2933.  
  2934. .list-table .list-table-data .data.image a[href*="/anime/37651/Fate_Extra__Last_Encore_-_Irusterias_Tendouron"] {
  2935. background: url("https://image.ibb.co/fXot98/w221.jpg") no-repeat center center / 100%;
  2936. }
  2937.  
  2938. .list-table .list-table-data .data.image a[href*="/anime/37601/Lord_of_Vermilion__Guren_no_Ou"] {
  2939. background: url("https://myanimelist.cdn-dena.com/images/anime/1121/91419.jpg") no-repeat center center / 100%;
  2940. }
  2941.  
  2942. .list-table .list-table-data .data.image a[href*="/anime/37377/Masamune-kun_no_Revenge_OVA"] {
  2943. background: url("https://myanimelist.cdn-dena.com/images/anime/1062/92517.jpg") no-repeat center center / 100%;
  2944. }
  2945.  
  2946. .list-table .list-table-data .data.image a[href*="/anime/36563/Megalo_Box"] {
  2947. background: url("https://myanimelist.cdn-dena.com/images/anime/1427/91055.jpg") no-repeat center center / 100%;
  2948. }
  2949.  
  2950. .list-table .list-table-data .data.image a[href*="/anime/35994/Satsuriku_no_Tenshi"] {
  2951. background: url("https://myanimelist.cdn-dena.com/images/anime/1786/91257.jpg") no-repeat center center / 100%;
  2952. }
  2953.  
  2954. .list-table .list-table-data .data.image a[href*="/anime/37569/Tenrou__Sirius_the_Jaeger"] {
  2955. background: url("https://myanimelist.cdn-dena.com/images/anime/1842/93136.jpg") no-repeat center center / 100%;
  2956. }
  2957.  
  2958. .list-table .list-table-data .data.image a[href*="/anime/37095/Violet_Evergarden_Special"] {
  2959. background: url("https://myanimelist.cdn-dena.com/images/anime/9/89993.jpg") no-repeat center center / 100%;
  2960. }
  2961.  
  2962. .list-table .list-table-data .data.image a[href*="/anime/37779/Yakusoku_no_Neverland"] {
  2963. background: url("https://myanimelist.cdn-dena.com/images/anime/1137/92050.jpg") no-repeat center center / 100%;
  2964. }
  2965.  
  2966. .list-table .list-table-data .data.image a[href*="/anime/25157/Trinity_Seven"] {
  2967. background: url("https://myanimelist.cdn-dena.com/images/anime/12/67795.jpg") no-repeat center center / 100%;
  2968. }
  2969.  
  2970. .list-table .list-table-data .data.image a[href*="/anime/33581/Trinity_Seven_Movie__Eternity_Library_to_Alchemic_Girl"] {
  2971. background: url("https://myanimelist.cdn-dena.com/images/anime/6/83172.jpg") no-repeat center center / 100%;
  2972. }
  2973.  
  2974. .list-table .list-table-data .data.image a[href*="/anime/28285/Trinity_Seven__Nanatsu_no_Taizai_to_Nana_Madoushi"] {
  2975. background: url("https://myanimelist.cdn-dena.com/images/anime/3/74066.jpg") no-repeat center center / 100%;
  2976. }
  2977.  
  2978. .list-table .list-table-data .data.image a[href*="/anime/28025/Tsukimonogatari"] {
  2979. background: url("https://myanimelist.cdn-dena.com/images/anime/6/68259.jpg") no-repeat center center / 100%;
  2980. }
  2981.  
  2982. .list-table .list-table-data .data.image a[href*="/anime/5365/Tsumiki_no_Ie"] {
  2983. background: url("https://myanimelist.cdn-dena.com/images/anime/13/13357.jpg") no-repeat center center / 100%;
  2984. }
  2985.  
  2986. .list-table .list-table-data .data.image a[href*="/anime/34902/Tsurezure_Children"] {
  2987. background: url("https://myanimelist.cdn-dena.com/images/anime/12/86676.jpg") no-repeat center center / 100%;
  2988. }
  2989.  
  2990. .list-table .list-table-data .data.image a[href*="/anime/34498/Uchiage_Hanabi_Shita_kara_Miru_ka_Yoko_kara_Miru_ka"] {
  2991. background: url("https://myanimelist.cdn-dena.com/images/anime/10/86521.jpg") no-repeat center center / 100%;
  2992. }
  2993.  
  2994. .list-table .list-table-data .data.image a[href*="/anime/33352/Violet_Evergarden"] {
  2995. background: url("https://myanimelist.cdn-dena.com/images/anime/1329/90618.jpg") no-repeat center center / 100%;
  2996. }
  2997.  
  2998. .list-table .list-table-data .data.image a[href*="/anime/18245/White_Album_2"] {
  2999. background: url("https://myanimelist.cdn-dena.com/images/anime/2/53561.jpg") no-repeat center center / 100%;
  3000. }
  3001.  
  3002. .list-table .list-table-data .data.image a[href*="/anime/6956/Working"] {
  3003. background: url("https://myanimelist.cdn-dena.com/images/anime/10/75262.jpg") no-repeat center center / 100%;
  3004. }
  3005.  
  3006. .list-table .list-table-data .data.image a[href*="/anime/25879/Working"] {
  3007. background: url("https://myanimelist.cdn-dena.com/images/anime/7/73886.jpg") no-repeat center center / 100%;
  3008. }
  3009.  
  3010. .list-table .list-table-data .data.image a[href*="/anime/31715/Working__Lord_of_the_Takanashi"] {
  3011. background: url("https://myanimelist.cdn-dena.com/images/anime/10/79375.jpg") no-repeat center center / 100%;
  3012. }
  3013.  
  3014. .list-table .list-table-data .data.image a[href*="/anime/10521/Working"] {
  3015. background: url("https://myanimelist.cdn-dena.com/images/anime/3/75263.jpg") no-repeat center center / 100%;
  3016. }
  3017.  
  3018. .list-table .list-table-data .data.image a[href*="/anime/14813/Yahari_Ore_no_Seishun_Love_Comedy_wa_Machigatteiru"] {
  3019. background: url("https://myanimelist.cdn-dena.com/images/anime/11/49459.jpg") no-repeat center center / 100%;
  3020. }
  3021.  
  3022. .list-table .list-table-data .data.image a[href*="/anime/18753/Yahari_Ore_no_Seishun_Love_Comedy_wa_Machigatteiru_OVA"] {
  3023. background: url("https://myanimelist.cdn-dena.com/images/anime/9/54831.jpg") no-repeat center center / 100%;
  3024. }
  3025.  
  3026. .list-table .list-table-data .data.image a[href*="/anime/23847/Yahari_Ore_no_Seishun_Love_Comedy_wa_Machigatteiru_Zoku"] {
  3027. background: url("https://myanimelist.cdn-dena.com/images/anime/11/75376.jpg") no-repeat center center / 100%;
  3028. }
  3029.  
  3030. .list-table .list-table-data .data.image a[href*="/anime/33161/Yahari_Ore_no_Seishun_Love_Comedy_wa_Machigatteiru_Zoku_OVA"] {
  3031. background: url("https://myanimelist.cdn-dena.com/images/anime/13/84052.jpg") no-repeat center center / 100%;
  3032. }
  3033.  
  3034. .list-table .list-table-data .data.image a[href*="/anime/24627/Yamada-kun_to_7-nin_no_Majo_OVA"] {
  3035. background: url("https://myanimelist.cdn-dena.com/images/anime/10/65001.jpg") no-repeat center center / 100%;
  3036. }
  3037.  
  3038. .list-table .list-table-data .data.image a[href*="/anime/28677/Yamada-kun_to_7-nin_no_Majo_TV"] {
  3039. background: url("https://myanimelist.cdn-dena.com/images/anime/2/73700.jpg") no-repeat center center / 100%;
  3040. }
  3041.  
  3042. .list-table .list-table-data .data.image a[href*="/anime/35507/Youkoso_Jitsuryoku_Shijou_Shugi_no_Kyoushitsu_e_TV"] {
  3043. background: url("https://myanimelist.cdn-dena.com/images/anime/5/86830.jpg") no-repeat center center / 100%;
  3044. }
  3045.  
  3046. .list-table .list-table-data .data.image a[href*="/anime/23283/Zankyou_no_Terror"] {
  3047. background: url("https://myanimelist.cdn-dena.com/images/anime/4/64447.jpg") no-repeat center center / 100%;
  3048. }
  3049.  
  3050. .list-table .list-table-data .data.image a[href*="/anime/30276/One_Punch_Man"] {
  3051. background: url("https://myanimelist.cdn-dena.com/images/anime/12/76049.jpg") no-repeat center center / 100%;
  3052. }
  3053.  
  3054. .list-table .list-table-data .data.image a[href*="/anime/31478/Bungou_Stray_Dogs"] {
  3055. background: url("https://myanimelist.cdn-dena.com/images/anime/3/79409.jpg") no-repeat center center / 100%;
  3056. }
  3057.  
  3058. .list-table .list-table-data .data.image a[href*="/anime/34437/Code_Geass__Fukkatsu_no_Lelouch"] {
  3059. background: url("https://myanimelist.cdn-dena.com/images/anime/3/82994.jpg") no-repeat center center / 100%;
  3060. }
  3061.  
  3062. .list-table .list-table-data .data.image a[href*="/anime/1/Cowboy_Bebop"] {
  3063. background: url("https://myanimelist.cdn-dena.com/images/anime/4/19644.jpg") no-repeat center center / 100%;
  3064. }
  3065.  
  3066. .list-table .list-table-data .data.image a[href*="/anime/36633/Date_A_Live_3rd_Season"] {
  3067. background: url("https://myanimelist.cdn-dena.com/images/anime/6/88526.jpg") no-repeat center center / 100%;
  3068. }
  3069.  
  3070. .list-table .list-table-data .data.image a[href*="/anime/36946/Dragon_Ball_Super_Movie"] {
  3071. background: url("https://image.ibb.co/bP3X2T/Dragon_Ball_1_720x1065.jpg") no-repeat center center / 100%;
  3072. }
  3073.  
  3074. .list-table .list-table-data .data.image a[href*="/anime/6746/Durarara"] {
  3075. background: url("https://myanimelist.cdn-dena.com/images/anime/10/71772.jpg") no-repeat center center / 100%;
  3076. }
  3077.  
  3078. .list-table .list-table-data .data.image a[href*="/anime/33049/Fate_stay_night_Movie__Heavens_Feel_-_II_Lost_Butterfly"] {
  3079. background: url("https://myanimelist.cdn-dena.com/images/anime/1829/92753.jpg") no-repeat center center / 100%;
  3080. }
  3081.  
  3082. .list-table .list-table-data .data.image a[href*="/anime/33050/Fate_stay_night_Movie__Heavens_Feel_3"] {
  3083. background: url("https://myanimelist.cdn-dena.com/images/anime/4/79292.jpg") no-repeat center center / 100%;
  3084. }
  3085.  
  3086. .list-table .list-table-data .data.image a[href*="/anime/11061/Hunter_x_Hunter_2011"] {
  3087. background: url("https://myanimelist.cdn-dena.com/images/anime/11/33657.jpg") no-repeat center center / 100%;
  3088. }
  3089.  
  3090. .list-table .list-table-data .data.image a[href*="/anime/570/Jin-Rou"] {
  3091. background: url("https://myanimelist.cdn-dena.com/images/anime/5/88943.jpg") no-repeat center center / 100%;
  3092. }
  3093.  
  3094. .list-table .list-table-data .data.image a[href*="/anime/6594/Katanagatari"] {
  3095. background: url("https://myanimelist.cdn-dena.com/images/anime/2/50023.jpg") no-repeat center center / 100%;
  3096. }
  3097.  
  3098. .list-table .list-table-data .data.image a[href*="/anime/22535/Kiseijuu__Sei_no_Kakuritsu"] {
  3099. background: url("https://myanimelist.cdn-dena.com/images/anime/3/73178.jpg") no-repeat center center / 100%;
  3100. }
  3101.  
  3102. .list-table .list-table-data .data.image a[href*="/anime/30831/Kono_Subarashii_Sekai_ni_Shukufuku_wo"] {
  3103. background: url("https://myanimelist.cdn-dena.com/images/anime/8/77831.jpg") no-repeat center center / 100%;
  3104. }
  3105.  
  3106. .list-table .list-table-data .data.image a[href*="/anime/36862/Made_in_Abyss_2nd_Season"] {
  3107. background: url("https://myanimelist.cdn-dena.com/images/anime/1022/91393.jpg") no-repeat center center / 100%;
  3108. }
  3109.  
  3110. .list-table .list-table-data .data.image a[href*="/anime/37514/Made_in_Abyss_Movie_1__Tabidachi_no_Yoake"] {
  3111. background: url("https://myanimelist.cdn-dena.com/images/anime/1120/91387.jpg") no-repeat center center / 100%;
  3112. }
  3113.  
  3114. .list-table .list-table-data .data.image a[href*="/anime/37515/Made_in_Abyss_Movie_2__Hourou_suru_Tasogare"] {
  3115. background: url("https://myanimelist.cdn-dena.com/images/anime/1110/91388.jpg") no-repeat center center / 100%;
  3116. }
  3117.  
  3118. .list-table .list-table-data .data.image a[href*="/anime/19/Monster"] {
  3119. background: url("https://myanimelist.cdn-dena.com/images/anime/10/18793.jpg") no-repeat center center / 100%;
  3120. }
  3121.  
  3122. .list-table .list-table-data .data.image a[href*="/anime/29803/Overlord"] {
  3123. background: url("https://myanimelist.cdn-dena.com/images/anime/7/88019.jpg") no-repeat center center / 100%;
  3124. }
  3125.  
  3126. .list-table .list-table-data .data.image a[href*="/anime/13601/Psycho-Pass"] {
  3127. background: url("https://myanimelist.cdn-dena.com/images/anime/5/43399.jpg") no-repeat center center / 100%;
  3128. }
  3129.  
  3130. .list-table .list-table-data .data.image a[href*="/anime/36286/Re_Zero_kara_Hajimeru_Isekai_Seikatsu__Memory_Snow"] {
  3131. background: url("https://myanimelist.cdn-dena.com/images/anime/1514/90928.jpg") no-repeat center center / 100%;
  3132. }
  3133.  
  3134. .list-table .list-table-data .data.image a[href*="/anime/36885/Saenai_Heroine_no_Sodatekata_Movie"] {
  3135. background: url("https://myanimelist.cdn-dena.com/images/anime/12/89255.jpg") no-repeat center center / 100%;
  3136. }
  3137.  
  3138. .list-table .list-table-data .data.image a[href*="/anime/35851/Sayonara_no_Asa_ni_Yakusoku_no_Hana_wo_Kazarou"] {
  3139. background: url("https://myanimelist.cdn-dena.com/images/anime/11/89556.jpg") no-repeat center center / 100%;
  3140. }
  3141.  
  3142. .list-table .list-table-data .data.image a[href*="/anime/35760/Shingeki_no_Kyojin_Season_3"] {
  3143. background: url("https://myanimelist.cdn-dena.com/images/anime/1173/92110.jpg") no-repeat center center / 100%;
  3144. }
  3145.  
  3146. .list-table .list-table-data .data.image a[href*="/anime/36999/Zoku_Owarimonogatari"] {
  3147. background: url("https://myanimelist.cdn-dena.com/images/anime/1584/91698.jpg") no-repeat center center / 100%;
  3148. }
  3149.  
  3150. body.anime .list-table .list-table-data .data.image a img {
  3151. visibility: hidden;
  3152. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement