forked from le-doux/bitsy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
92 lines (77 loc) · 1.96 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
<!DOCTYPE HTML>
<html>
<head>
<title>Bitsy</title>
<!-- FONTS -->
<link href="editor/shared/style/googleNunito.css" rel="stylesheet">
<link href="editor/shared/style/googleMaterialIcons.css" rel="stylesheet">
<!-- <style>
body {
font-family: "Nunito", Helvetica, Arial, sans-serif;
background: #ccccff;
}
#header {
background: #6767b2;
color: #fff;
}
</style> -->
<!-- STYLES -->
<link rel="stylesheet" type="text/css" href="editor/shared/style/editorStyle.css">
<link rel="stylesheet" type="text/css" href="editor/shared/style/editorButtons.css">
<link rel="stylesheet" type="text/css" href="editor/shared/style/editorColors.css">
<!-- <link rel="stylesheet" type="text/css" href="shared/style/editorAnimations.css">
<link rel="stylesheet" type="text/css" href="shared/style/colorPickerStyle.css"> -->
<style>
#mainPanel {
/*width: calc(100% - 40px);*/
/*height: calc(100% - 60px);*/
}
#launchBitsy {
background: #ccccff;
color: #6767b2;
border-radius: 4px;
padding: 4px;
}
#launchBitsy a {
color: #6767b2;
}
#launchBitsy:hover {
background: #6767b2;
color: white;
}
#launchBitsy:hover a {
color: white;
}
</style>
</head>
<body>
<!-- <div id="header">
<img src="editor/shared/image/cat.png" width="24px"/>
<span style="font-size:24px">Bitsy</span>
</div>
<div>
Make tiny games
</div> -->
<center>
<div id="mainPanel" class="panel color0">
<div class="bar color0">
<div class="panelBarTitle">
<span style="margin-left: -24px;">
<img src="editor/shared/image/cat2.png" width="24px"/>
<span style="font-size: 24px">Bitsy</span>
</span>
</div>
</div>
Make little games worlds stories
<div id="mainInner">
<a href="editor/index.html">
<div id="launchBitsy">
<!-- <i class="material-icons">gamepad</i> -->
Make a game!
</div>
</a>
</div>
</div>
</center>
</body>
</html>