diff options
Diffstat (limited to 'src/lib/Settings/Attributions.svelte')
| -rw-r--r-- | src/lib/Settings/Attributions.svelte | 70 |
1 files changed, 0 insertions, 70 deletions
diff --git a/src/lib/Settings/Attributions.svelte b/src/lib/Settings/Attributions.svelte deleted file mode 100644 index dad576e4..00000000 --- a/src/lib/Settings/Attributions.svelte +++ /dev/null @@ -1,70 +0,0 @@ -<script> - import root from '$lib/Utility/root'; -</script> - -<ul> - <li> - <a href="https://anilist.co/" target="_blank">AniList</a>: all data not explicity attributed - otherwise, excluding primary chapter and volume data, character birthday data, and subtitled - anime release data - </li> - <li><span id="mangadex">MangaDex</span>: <b>only</b> chapter and volume count data</li> - <!-- <li> - <a href="https://www.animecharactersdatabase.com/index.php" target="_blank"> - Anime Characters Database - </a>: primary character birthday data - </li> --> - <!-- <li> - <a href="https://www.anisearch.com/" target="_blank">aniSearch</a>: secondary character - birthday data - </li> --> - <!-- <li> - <a href="https://www.mangaupdates.com/" target="">Baka-Updates Magna</a>: manga release data - </li> --> - <!-- <li> - <a href="https://www.wlnupdates.com/">WLN Updates</a>: web & light novel release data - </li> --> - <!-- <li> - <a href="https://subsplease.org/">SubsPlease</a>: subtitle release data - </li> --> -</ul> - -<p /> - -<details open class="card-clear"> - <summary>Outbound Link Disclaimer</summary> - <ol> - <li> - <a href={root('/')}>due.moe</a> - does not host or directly link to any less-than-legal anime or manga material and/or distribution - platforms. - </li> - <li> - <a href={root('/')}>due.moe</a> - is not affiliated with any of the above or below sites and services. - </li> - <li> - At the moment, <a href={root('/')}>due.moe</a> only ever contains outbound links to the - following sites and services: - - <ul> - <li><a href="https://anilist.co/">AniList.co</a></li> - <li><a href="https://myanimelist.net/">MyAnimeList</a> (if selected)</li> - <li><a href="https://animeschedule.net/">AnimeSchedule.net</a> (if selected)</li> - <li><a href="https://www.livechart.me/">LiveChart.me</a> (if selected)</li> - <li><a href="https://www.wikipedia.org/">Wikipedia</a> (if rate-limited)</li> - </ul> - </li> - </ol> -</details> - -<style> - #mangadex { - filter: blur(2.5px); - transition: filter 0.25s; - } - - #mangadex:hover { - filter: none; - } -</style> |