-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy patheditor.html
54 lines (51 loc) · 1.41 KB
/
editor.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
<!DOCTYPE html>
<!-- # Copyright (c) 2014-2024 Feudal Code Limitada # -->
<html lang="en">
<head>
<meta charset="utf-8">
<title>BobSprite - Sprite Editor</title>
<meta name="description" content="BobSprite is a free online drawing tool especially designed for Pixel Art.">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="icon" href="images/favicon.png" type="image/png">
<style>
body {
display: block;
margin: 0px;
padding: 0px;
overflow: hidden;
background-color: rgb(78,80,84);
}
#bigdiv {
display: inline-block;
position: fixed;
margin: 0px;
padding: 0px;
width: 1300px;
height: 660px;
}
canvas {
display: inline-block;
margin: 0px;
padding: 0px;
}
button {
border-radius: 6px;
font-size: 14px;
border: solid 1px lightgrey;
background-color: whitesmoke;
}
button:focus {
outline-style: none;
}
button:active {
color: silver;
background-color: midnightblue;
outline-style: none;
}
</style>
</head>
<body>
<div id="bigdiv"></div>
<script src="bobsprite.js"></script>
</body>
</html>