Advertisement
Guest User

Untitled

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