# HG changeset patch # User Eugen Sawin # Date 1313536760 -7200 # Node ID db2e8b9145a6397e147f76339a19dc02f565991c Initial. diff -r 000000000000 -r db2e8b9145a6 client/#machine.html# --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/client/#machine.html# Wed Aug 17 01:19:20 2011 +0200 @@ -0,0 +1,19 @@ + + + + Machine + + + + + + + + +
+ + +
+
+ + diff -r 000000000000 -r db2e8b9145a6 client/client.css --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/client/client.css Wed Aug 17 01:19:20 2011 +0200 @@ -0,0 +1,26 @@ +body +{ + background-color: black; + color: white; + font-family: monospace; + border-style: none; + margin: 0px; +} + +view-area +{ + width: 100%; + background-color: gray; +} + +command-area input +{ + position: fixed; + width: 100%; + border-style: none; + background-color: blue; + color: white; + font-family: monospace; + bottom: 0px; + outline: none; +} \ No newline at end of file diff -r 000000000000 -r db2e8b9145a6 client/machine.html --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/client/machine.html Wed Aug 17 01:19:20 2011 +0200 @@ -0,0 +1,19 @@ + + + + Machine + + + + + + View + + +
+ + +
+
+ + diff -r 000000000000 -r db2e8b9145a6 client/scripts/client.js --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/client/scripts/client.js Wed Aug 17 01:19:20 2011 +0200 @@ -0,0 +1,6 @@ +function command() +{ + var com = document.getElementById("com").value; + var view = document.getElementById("view-area"); + view.value = "hi"; +} \ No newline at end of file