-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
39 lines (37 loc) · 1.69 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
<!DOCTYPE html>
<html lang="ja">
<head>
<meta charset="UTF-8">
<title>利用方法 - basestyle.css</title>
<link rel="stylesheet" href="basestyle-dark.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/prism/1.29.0/themes/prism-tomorrow.min.css">
<script src="https://cdnjs.cloudflare.com/ajax/libs/prism/1.29.0/prism.min.js"></script>
</head>
<boby>
<header>
<h1>basestyle.cssの利用方法</h1>
</header>
<main>
<h2>利用方法</h2>
<p>とりあえず利用する程度であれば、次の方法で十分です。</p>
<p>ダークテーマの場合:</p>
<pre><code class="language-html"><link rel="stylesheet"
href="https://shizukani-cp.github.io/basestyle.css/basestyle-dark.css"></code></pre>
<p>ライトテーマの場合:</p>
<pre><code class="language-html"><link rel="stylesheet"
href="https://shizukani-cp.github.io/basestyle.css/basestyle-light.css"></code></pre>
<p>ただし、ライトテーマ、ダークテーマといったのを動的に変えようとすると、このようになります。</p>
<pre data-src="./example.html" class="language-html"></pre>
<a href="example.html">表示するとこのようなイメージ</a>
<h2>ソース</h2>
<p>さっきのリンク方式がおすすめですが、ここからコピペ使うなどもアリです。</p>
<p>basestyle-light.css</p>
<pre data-src="./basestyle-light.css" class="language-css"></pre>
<p>basestyle-dark.css</p>
<pre data-src="./basestyle-dark.css" class="language-css"></pre>
</main>
<footer>
<p>© 2024 shizukani-cp</p>
</footer>
</body>
</html>