2010-09-18 17:00:23 +00:00
|
|
|
/*
|
|
|
|
Copyright (c) 2010 Brian Silverman, Barry Silverman
|
|
|
|
|
|
|
|
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
|
|
of this software and associated documentation files (the "Software"), to deal
|
|
|
|
in the Software without restriction, including without limitation the rights
|
|
|
|
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
|
|
copies of the Software, and to permit persons to whom the Software is
|
|
|
|
furnished to do so, subject to the following conditions:
|
|
|
|
|
|
|
|
The above copyright notice and this permission notice shall be included in
|
|
|
|
all copies or substantial portions of the Software.
|
|
|
|
|
|
|
|
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
|
|
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
|
|
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
|
|
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
|
|
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
|
|
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
|
|
THE SOFTWARE.
|
|
|
|
*/
|
|
|
|
|
2010-09-18 16:56:48 +00:00
|
|
|
body {
|
|
|
|
background: white;
|
|
|
|
color: black;
|
2010-10-07 16:21:06 +00:00
|
|
|
/* font-family: cursive;*/
|
2010-09-18 23:59:41 +00:00
|
|
|
font-family :Verdana, Arial, Helvetica, Sans-Serif;
|
2010-09-18 17:29:45 +00:00
|
|
|
font-size: 12px;
|
2010-09-18 16:56:48 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
div.frame {
|
|
|
|
margin-left: 10px;
|
2010-10-07 16:21:06 +00:00
|
|
|
position: relative;
|
|
|
|
width: 1150px;
|
|
|
|
height: 600px;
|
2010-09-18 16:56:48 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
div.chip {
|
|
|
|
background: lightgray;
|
|
|
|
border: 2px solid gray;
|
2010-10-07 16:21:06 +00:00
|
|
|
position: absolute;
|
2010-09-18 16:56:48 +00:00
|
|
|
width: 800px;
|
|
|
|
height: 600px;
|
|
|
|
overflow: hidden;
|
|
|
|
}
|
|
|
|
|
|
|
|
canvas.chip {
|
|
|
|
position: absolute;
|
2010-10-07 16:21:06 +00:00
|
|
|
width: 600px;
|
|
|
|
height: 600px;
|
2010-09-18 16:56:48 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
div.buttons{
|
2010-10-07 16:21:06 +00:00
|
|
|
position: absolute;
|
|
|
|
top: -5px;
|
|
|
|
left: 820px;
|
2010-09-18 16:56:48 +00:00
|
|
|
}
|
|
|
|
|
2010-10-07 16:21:06 +00:00
|
|
|
p.status {
|
|
|
|
position: absolute;
|
|
|
|
left: 820px;
|
|
|
|
top: 20px;
|
2010-09-18 16:56:48 +00:00
|
|
|
font-family: monospace;
|
|
|
|
font-size: 12px;
|
|
|
|
}
|
|
|
|
|
2010-10-07 16:21:06 +00:00
|
|
|
img.navbutton{
|
2010-09-18 16:56:48 +00:00
|
|
|
border: 0px;
|
|
|
|
}
|
|
|
|
|
2010-10-07 16:21:06 +00:00
|
|
|
img.navplay{
|
2010-09-18 17:29:45 +00:00
|
|
|
position: relative;
|
|
|
|
margin-right: 5px;
|
2010-09-18 16:56:48 +00:00
|
|
|
border: 0px;
|
|
|
|
}
|
|
|
|
|
2010-10-07 16:21:06 +00:00
|
|
|
img.navstop{
|
2010-09-18 16:56:48 +00:00
|
|
|
position: absolute;
|
|
|
|
border: 0px;
|
|
|
|
}
|
|
|
|
|
|
|
|
table.memtable {
|
2010-10-07 16:21:06 +00:00
|
|
|
position: absolute;
|
|
|
|
top: 78px;
|
|
|
|
left: 820px;
|
2010-09-18 16:56:48 +00:00
|
|
|
font-family: monospace;
|
|
|
|
font-size: 12px;
|
|
|
|
border-spacing: 0px;
|
|
|
|
}
|
2010-09-18 23:59:41 +00:00
|
|
|
|
2010-10-07 16:21:06 +00:00
|
|
|
#title {
|
|
|
|
font-size:30px;
|
|
|
|
font-weight:bold;
|
|
|
|
}
|