generated from SivanMehta/ocr
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
55 lines (50 loc) · 1.73 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
53
54
55
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>Endless Wordle</title>
<link rel="stylesheet" href="https://cdn.simplecss.org/simple.min.css" />
<link rel="stylesheet" href="dist/keyboard.css" />
<style>
.guess {
font-family: 'Courier New', Courier, monospace;
width: 100%;
display: flex;
justify-content: center;
}
.tile {
font-size: 2.5rem;
width: 3rem;
text-align: center;
border: black solid 1px;
font-weight: bold;
font-family: 'Clear Sans', 'Helvetica Neue', Arial, sans-serif;
}
/* simple keyboard conflicts with simple css */
.hg-theme-default { background-color: rgba(0,0,0,0); }
.hg-row > .hg-button { background: white; border-bottom: none; }
.hg-button > span { color: #212121; }
.correct, .hg-button.correct { background-color: #6aaa64; }
.wrong, .hg-button.wrong { background-color: #787c7e; }
.misplaced, .hg-button.misplaced { background-color: #c9b458; }
</style>
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-170143681-1"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'UA-170143681-1');
</script>
</head>
<body>
<noscript>
You need to enable JavaScript to run this app.
</noscript>
<div id="root"></div>
<footer>
Endless Wordle was created by <a href='/'>Sivan Mehta</a> and is licensed under the MIT license.
</footer>
<script src="dist/bundle.js"></script>
</body>
</html>