92 lines
1.9 KiB
Plaintext
92 lines
1.9 KiB
Plaintext
---
|
|
import Layout from "@/layouts/Layout.astro";
|
|
import MSymbols from "@/licenses/material-symbols.txt?raw";
|
|
import Monkeytype from "@/licenses/monkeytype.txt?raw";
|
|
---
|
|
|
|
<Layout>
|
|
<span>クレジット</span>
|
|
|
|
<div class="section">
|
|
<span>Material Symbols</span>
|
|
<textarea disabled>
|
|
{MSymbols}
|
|
</textarea>
|
|
</div>
|
|
|
|
<div class="section">
|
|
<span>Monkeytype</span>
|
|
<textarea disabled>
|
|
{Monkeytype}
|
|
</textarea>
|
|
</div>
|
|
|
|
<div class="section">
|
|
<span>みすきーしすてむず いず みすきーしすてむず</span>
|
|
<p>
|
|
<a
|
|
href="https://storage.misskey.systems/storage/files/489b622c-bf02-49a6-a7cc-c67ba1f0930f.png"
|
|
target="_blank"
|
|
>
|
|
サービスのファビコン
|
|
</a>より利用させていただいております。
|
|
</p>
|
|
</div>
|
|
|
|
<div class="section">
|
|
<span>ゆずねっと</span>
|
|
<p>
|
|
<a
|
|
href="https://uwuzu.net/manifest/icon-512x512.png"
|
|
target="_blank"
|
|
>
|
|
サービスのファビコン
|
|
</a>より利用させていただいております。
|
|
</p>
|
|
</div>
|
|
|
|
<div class="section">
|
|
<span>Yahoo! Japan</span>
|
|
<p>
|
|
<a
|
|
href="https://developer.yahoo.co.jp/yconnect/loginbuttons.html"
|
|
target="_blank"
|
|
>
|
|
Yahoo! JAPAN IDログインボタン
|
|
</a>より利用させていただいております。
|
|
</p>
|
|
</div>
|
|
</Layout>
|
|
|
|
<style scoped>
|
|
span {
|
|
font-size: 2rem;
|
|
font-weight: bold;
|
|
margin-bottom: -1.5rem;
|
|
}
|
|
|
|
.section {
|
|
display: flex;
|
|
flex-direction: column;
|
|
text-align: center;
|
|
max-width: 90dvw;
|
|
}
|
|
|
|
.section span {
|
|
margin: 0;
|
|
font-size: 1.5rem;
|
|
font-weight: bold;
|
|
}
|
|
|
|
.section a {
|
|
color: #206aff;
|
|
}
|
|
|
|
.section textarea {
|
|
width: 60dvw;
|
|
height: 12.5rem;
|
|
resize: none;
|
|
border: 1px solid #000000;
|
|
border-radius: 0.5rem;
|
|
}
|
|
</style> |