-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
55 lines (50 loc) · 1.77 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
<!doctype html>
<!--[if lt IE 7]> <html class="no-js ie6 oldie" lang="en"> <![endif]-->
<!--[if IE 7]> <html class="no-js ie7 oldie" lang="en"> <![endif]-->
<!--[if IE 8]> <html class="no-js ie8 oldie" lang="en"> <![endif]-->
<!--[if gt IE 8]><!--> <html class="no-js" lang="en"> <!--<![endif]-->
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<title>pxcel</title>
<link rel="stylesheet" type="text/css" href="pxcel.css">
<meta name="description" content="A free, stupidly simple 16x16 creator">
<meta name="author" content="Brent Fitzgerald">
<meta name="viewport" content="width=device-width,initial-scale=1">
<link id='favicon' rel="icon" type="image/png" href="favicon.png">
</head>
<body>
<div id='container'>
<header>
<h1>
pxcel
</h1>
</header>
<div id='paletteContainer'>
<canvas class="palette" width='88px' height='500px'></canvas>
</div>
<div id='canvasContainer'>
<canvas id="canvas" width='400px' height='400px'></canvas>
</div>
<div id='previews'>
<canvas class='preview zoom2' width='32px' height='32px'></canvas>
<canvas class='preview zoom1' width='16px' height='16px'></canvas>
</div>
<section id='controls'>
<div id='settings'>
<a href='#' id='clear'>clear</a>
<a href='#' id='invert'>invert</a>
<a href='#' id='download'>view</a>
</div>
</section>
<footer></footer>
</div>
<script type="text/javascript" src="ender.min.js"></script>
<script type="text/javascript" src='pxcel.js'></script>
<!--[if lt IE 7 ]>
<script src="//ajax.googleapis.com/ajax/libs/chrome-frame/1.0.2/CFInstall.min.js"></script>
<script>window.attachEvent("onload",function(){CFInstall.check({mode:"overlay"})})</script>
<![endif]-->
</body>
</html>