-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy paththeme.html
More file actions
49 lines (46 loc) Β· 1.61 KB
/
theme.html
File metadata and controls
49 lines (46 loc) Β· 1.61 KB
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
40
41
42
43
44
45
46
47
48
49
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Theme π₯</title>
<link rel="stylesheet" href="./css/theme.css" />
<!-- AdminKit CSS file -->
<link rel="stylesheet" href="https://unpkg.com/@adminkit/core@latest/dist/css/app.css" />
</head>
<body class="light-theme">
<!-- nav link -->
<ul class="main-list-links">
<li class="main-item">
<a class="main-link" href="./index.html">Card Fate π§</a>
</li>
<li class="main-item">
<a class="main-link" href="./flex-panel.html">Flex Panel π</a>
</li>
</ul>
<!-- THEME -->
<div class="menu">
<div class="menu-header">
<div class="theme-switcher">
<input type="radio" name="themes" id="light-theme" checked />
<label for="light-theme">
<span><i data-feather="sun"></i>Light</span>
</label>
<input type="radio" name="themes" id="dark-theme" />
<label for="dark-theme">
<span><i data-feather="moon"></i>Dark</span>
</label>
<input type="radio" name="themes" id="black-theme" />
<label for="black-theme">
<span><i data-feather="star"></i>Black</span>
</label>
<span class="slider"></span>
</div>
</div>
</div>
<!-- AdminKit JS file -->
<script src="https://unpkg.com/@adminkit/core@latest/dist/js/app.js"></script>
<script src="./app/theme.js" defer></script>
</body>
</html>