diff options
Diffstat (limited to 'index.html')
| -rw-r--r-- | index.html | 6 |
1 files changed, 4 insertions, 2 deletions
@@ -1,6 +1,7 @@ <link rel="stylesheet" href="css/sally.css" type="text/css" charset="utf-8" /> <link rel="stylesheet" href="css/ak.css" type="text/css" charset="utf-8" /> <style type="text/css"> + .rapper { cursor: crosshair; } body.grid span { border-right: 1px solid #444; border-top: 1px solid #444; border-bottom: 1px solid #444; } body.grid div { border-top: 1px solid #444; border-left: 1px solid #444; } @@ -22,6 +23,7 @@ body.grid .focused { box-shadow: inset 0 0 2px white, inset 0 0 2px white, inset <span id="square_el" class="tool">square</span> <span id="circle_el" class="tool">circle</span> <span id="text_el" class="tool">text</span> + <span id="clear_el" class="tool">clear</span> brush size: <span id="width_el" class="ed">5</span> x <span id="height_el" class="ed">5</span> canvas size: <span id="canvas_width_el" class="ed">80</span> x <span id="canvas_height_el" class="ed">24</span> @@ -30,9 +32,9 @@ body.grid .focused { box-shadow: inset 0 0 2px white, inset 0 0 2px white, inset </body> <script type="text/javascript-shader" id="demo_shader"> -lex.bg = colors[color_hue_order[Math.floor((x+y*y)/20)%16]] + lex.bg = colors[color_hue_order[Math.floor((x+y*y)/20)%16]] lex.fg = (x+y)%16 - lex.char = (y%2) ? ":" : "%" + lex.char = (y%2) ? ":" : "%" /* if (x > y || y > x + 20 || x > y / 4 + 10) { |
