-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
88 lines (75 loc) · 2.79 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
<!doctype html>
<html>
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<title>Word Puzzle Game</title>
<meta name="description" content="A simple html5 canvas word puzzle game.">
<meta name="author" content="Øyvind Neshaug">
<style type="text/css">
body {
margin: 0px 0px 0px 0px;
padding: 0px 0px 0px 0px;
border: none;
}
#menu {
border: 1px solid black;
width: 150px;
}
p.css-vertical-text {
color:#333;
border:0px solid red;
writing-mode:tb-rl;
-webkit-transform:rotate(90deg);
-moz-transform:rotate(90deg);
-o-transform: rotate(90deg);
white-space:nowrap;
display:block;
bottom:0;
width:20px;
height:20px;
font-family: ‘Trebuchet MS’, Helvetica, sans-serif;
font-size:24px;
font-weight:normal;
text-shadow: 0px 0px 1px #333;
}
.rounded {
border: 10px solid #e0e0e0;
border-radius: 20px;
-moz-border-radius: 20px;
}
.dialog {
position: fixed;
}
.dialog .text {
padding-top: 10px;
text-align: center;
font-size: 24px;
font-family: ‘Trebuchet MS’, Helvetica, sans-serif;
height: 60%;
}
.dialog .button {
height: 40%;
position: relative;
font-size: 60px;
text-align: center;
bottom: 2px;
font-family: ‘Trebuchet MS’, Helvetica, sans-serif;
cursor: pointer;
}
</style>
</head>
<body>
<script type="text/javascript" src="src/Utils.js"></script>
<script type="text/javascript" src="src/LetterPainter.js"></script>
<script type="text/javascript" src="src/Game.js"></script>
<script type="text/javascript" src="src/GameDialog.js"></script>
<script type="text/javascript" src="src/Board.js"></script>
<script type="text/javascript" src="src/BoardView.js"></script>
<script type="text/javascript" src="src/Shape.js"></script>
<script type="text/javascript" src="src/ShapeView.js"></script>
<script type="text/javascript" src="src/Menu.js"></script>
<script type="text/javascript" src="resources/Words.js"></script>
<script type="text/javascript" src="src/start.js"></script>
</body>
</html>