~azzar1/unity/add-show-desktop-key

95 by mattgiuca
Moved some things out of www into their respective dirs, console and
1
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
2
                      "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
3
<html>
4
 <head>
5
  <title>IVLE Python Console</title>
6
  <script type='text/javascript' src='scripts/console.js'></script>
7
  <style type='text/css'>
8
    div.output {
9
        border: solid blue 1pt;
10
        height: 24em;
11
        overflow: scroll;
12
        margin-bottom: 4pt;
13
    }
14
    div.errors {
15
        border: solid red 1pt;
16
        height: 6em;
17
        overflow: scroll;
18
        margin-bottom: 4pt;
19
    }
20
    div.input {
21
        
22
        border: solid green 1pt;
23
    }
24
  </style>
25
 </head>
26
 <body>
27
  <div class='output'>
28
  </div>
29
  <div class='errors'>
30
  </div>
31
  <div class='input'>
32
   <input type='text' size='80'/>
33
  </div>
34
 </body>
35
</html>