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

« back to all changes in this revision

Viewing changes to console/index.html

  • Committer: drtomc
  • Date: 2007-12-21 00:20:24 UTC
  • Revision ID: svn-v3-trunk0:2b9c9e99-6f39-0410-b283-7f802c844ae2:trunk:111
Checkpoint work on the console.

Show diffs side-by-side

added added

removed removed

Lines of Context:
5
5
  <title>IVLE Python Console</title>
6
6
  <script type='text/javascript' src='scripts/console.js'></script>
7
7
  <style type='text/css'>
8
 
    div.output {
 
8
    #output {
9
9
        border: solid blue 1pt;
10
10
        height: 24em;
11
11
        overflow: scroll;
12
12
        margin-bottom: 4pt;
13
13
    }
14
 
    div.errors {
 
14
    #errors {
15
15
        border: solid red 1pt;
16
16
        height: 6em;
17
17
        overflow: scroll;
18
18
        margin-bottom: 4pt;
19
19
    }
20
 
    div.input {
21
 
        
 
20
    #input {
22
21
        border: solid green 1pt;
23
22
    }
24
23
  </style>
25
24
 </head>
26
25
 <body>
27
 
  <div class='output'>
28
 
  </div>
29
 
  <div class='errors'>
30
 
  </div>
31
 
  <div class='input'>
32
 
   <input type='text' size='80'/>
 
26
  <div id='output'>
 
27
  </div>
 
28
  <div id='errors'>
 
29
  </div>
 
30
  <div id='input'>
 
31
   <input type='text' size='80' onchange='enter_line(this)'/>
33
32
  </div>
34
33
 </body>
35
34
</html>