-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
51 lines (39 loc) · 1.39 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport"
content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no target-densitydpi=device-dpi" />
<meta name="apple-mobile-web-app-capable" content="yes">
<title>Puzzle Cube</title>
<meta property="og:type" content="website" />
<meta property="og:title" content="Puzzle Cube" />
<meta property="og:url" content="https://wainwrightmark.github.io/puzzle_cube/" />
<meta property="og:site_name" content="Puzzle Cube" />
<meta property="og:description" content="Rubix Cube Solver" />
<link href="https://fonts.googleapis.com/css?family=Roboto:300,400,500,700&display=swap" rel="stylesheet" />
<link href="https://unpkg.com/papercss/dist/paper.min.css" rel="stylesheet" />
<link data-trunk href="styles.css" rel="css" />
</head>
<body></body>
</html>
<style>
body {
touch-action: manipulation;
overscroll-behavior-x: none;
overscroll-behavior-y: none;
}
body.dark {
--bg-color: #000;
--bg-secondary-color: #131316;
--font-color: #f5f5f5;
--color-grey: #ccc;
--color-darkGrey: #777;
}
</style>
<script>
if (window.matchMedia &&
window.matchMedia('(prefers-color-scheme: dark)').matches) {
document.body.classList.add('dark');
}
</script>