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

« back to all changes in this revision

Viewing changes to src/console/index.html

  • Committer: mattgiuca
  • Date: 2007-12-20 03:14:17 UTC
  • Revision ID: svn-v3-trunk0:2b9c9e99-6f39-0410-b283-7f802c844ae2:trunk:93
New directory hierarchy.
Renamed src to www.
Added console, trampoline (currently empty).

Show diffs side-by-side

added added

removed removed

Lines of Context:
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>