-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathindex.html
135 lines (129 loc) · 3.85 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
<html>
<head>
<title>Nerdle Solver</title>
<style>
th, td
{
border: 1px solid black;
border-radius: 10px;
}
td
{
text-align: center;
color: white;
font-weight: bold;
font-size: 40;
}
table
{
width: 100%;
table-layout: fixed;
}
tr
{
height: 120px;
}
td.selectedNode
{
border: 5px solid black;
}
td.nodeInvalid
{
background-color: red;
}
td.unselectedNode
{
border: 1px solid black;
}
td.nodePositionUnknown
{
background-color: grey;
}
td.nodePositionCorrect
{
background-color: rgb(57,136,116);
}
td.nodePositionUsed
{
background-color: rgb(134,4,88);
}
td.nodePositionUnused
{
background-color: rgb(22,24,3);
}
tbody.suggestionNodes
{
background-color: gold;
}
div.dimmed
{
visibility: hidden;
height: 0px;
}
.noselect
{
-webkit-touch-callout: none; /* iOS Safari */
-webkit-user-select: none; /* Safari */
-khtml-user-select: none; /* Konqueror HTML */
-moz-user-select: none; /* Firefox */
-ms-user-select: none; /* Internet Explorer/Edge */
user-select: none; /* Non-prefixed version, currently
supported by Chrome and Opera */
}
</style>
<script type="text/javascript">
var bInstant = false;
var bMini = false;
</script>
<script src="nerdleglobals.js" type="text/javascript"></script>
<script src="nerdleui.js" type="text/javascript"></script>
<script src="nerdlesolver.js" type="text/javascript"></script>
</head>
<body onload="initialise()">
<p>
<a href="https://github.com/TonyBUK/NerdleSolver">Tony's Nerdle Solver on Github</a>,
<b>Nerdle Classic Solver</b>,
<a href="mini.html">Nerdle Mini Solver</a>,
<a href="instant.html">Nerdle Instant Solver</a>
</p>
<p align="center" class="noselect">
<table>
<tbody id="solver">
</tbody>
</table>
</p>
<p align="center" id="issues">
</p>
<p align="center" id="messages">
</p>
<div id="solverentry">
<p align="center" class="noselect">
<table>
<tbody id="keyboardRow1">
</tbody>
</table>
<table>
<tbody id="keyboardRow2">
</tbody>
</table>
<table>
<tbody id="keyboardRow3">
</tbody>
</table>
</p>
<p align="center" class="noselect">
<b>Suggested Expression</b>
<table>
<tbody id="suggestion" class="suggestionNodes">
</tbody>
</table>
</p>
</div>
<div id="colourentry" class="dimmed">
<table>
<tbody id="keyboardRow4">
</tbody>
</table>
</div>
</body>
</html>