-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathnumber.square.html
More file actions
72 lines (61 loc) · 1.73 KB
/
number.square.html
File metadata and controls
72 lines (61 loc) · 1.73 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
<!DOCTYPE html>
<html lang="en" manifest="rushcombe.appcache">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="user-scalable=no, width=device-width, initial-scale=1, maximum-scale=1">
<title>Ruschcombe Number Square: Year 1</title>
<link href='//fonts.googleapis.com/css?family=Open+Sans:400,600,700' rel='stylesheet' type='text/css'>
<script type="text/javascript" src="number.square.js"></script>
<style type="text/css">
body,html {
font-family: 'Open Sans', sans-serif;
top: 50%;
background-color: #df4a32;
color: #FFFFFF;
font-size: larger;
}
#numberSquare {
border: 1px solid white;
border-collapse: collapse;
}
#numberSquare td {
border: 1px solid white;
border-collapse: collapse;
width: 40px;
height: 40px;
text-align: center;
vertical-align: middle;
display: inline-block;
padding: 5px;
}
#container {
display: inline-block;
position: fixed;
top: 0;
bottom: 0;
left: 0;
right: 0;
width: 522px;
height: 522px;
margin: auto;
}
#clear {
display: inline-block;
width: 100%;
text-align: center;
padding: 10px 0 10px 0;
background-color: #FFFFFF;
color: #df4a32;
}
</style>
</head>
<body>
<div id="container">
<table id="numberSquare"></table>
<a id="clear">CLEAR</a>
</div>
<script type="text/javascript">
RCW.start();
</script>
</body>
</html>