-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathindex.html
61 lines (46 loc) · 932 Bytes
/
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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Blockly-Z80 demos</title>
<style>
a {
display: block;
font-size: 1cm;
font-family: sans-serif;
text-decoration: none;
margin: auto;
width: 10cm;
text-align: center;
background: #2C8;
color: #FFF;
border: 0.1cm solid #5FB;
border-right-color: #095;
border-bottom-color: #095;
border-radius: 0.2cm;
}
a:hover {
background: #3D9;
color: #FF0;
}
a.button-disabled,
a.button-disabled:hover {
background: #888;
color: #DDD;
border-color: #BBB;
border-right-color: #555;
border-bottom-color: #555;
}
h1, p {
text-align: center;
}
</style>
</head>
<body>
<h1>Blockly Z80 demos</h1>
<a href="demos/commands/index.html">Commands demo</a>
<p>Basic demontration of the available Blockly-Z80 commands</p>
<a href="#" class="button-disabled">Game designer demo</a>
<p>Coming soon...</p>
</body>
</html>