-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
52 lines (46 loc) · 1.35 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
40
41
42
43
44
45
46
47
48
49
50
51
52
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Dark Mode - Light Mode</title>
<style>
body {
align-items: center;
color: #827e7e;
display: flex;
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
font-size: large;
height: 100vh;
justify-content: center;
margin: 0;
padding: 0;
text-align: center;
}
a {
color: #f30d0d;
}
</style>
</head>
<body>
<div class="container">
<h1>Dark Mode - Light Mode</h1>
<p>A nice Dark-Mode-Light-Mode Package 😇</p>
<p>to toggle between Dark 🌙 and Light 🔆 Mode</p>
<p>with a nice animation 😍</p>
<div>
<a href="https://github.com/refatalsakka/dark-mode-light-mode#installation" target="_blank">installation</a>
<a href="https://www.npmjs.com/package/dark-mode-light-mode" target="_blank">npm</a>
<a href="https://github.com/refatalsakka/dark-mode-light-mode/issues" target="_blank">issues</a>
</div>
</div>
<div class="mode-layer"></div>
<div class="flip-card mode-button mode-animation">
<div class="flip-card-inner">
<div class="flip-card-front">🌙</div>
<div class="flip-card-back">🔆</div>
</div>
</div>
<script src="index.js"></script>
</body>
</html>