mirror of
https://github.com/pkimpel/retro-b5500.git
synced 2026-02-12 11:17:29 +00:00
2. Fix character-mode B-register handling in Processor and slightly optimize some stream syllables. 2. Fix I/O-finished interrupt signaling (or rather, the lack thereof) in IOUnit. 3. Change system option settings in ColdLoader based on recent MCP tests. 4. Commit minor improvements to SyllableDebugger. 5. Commit version of KERNEL object code for use with SyllableDebugger. 6. Commit Mark XVI DCMCP transcription as of 2013-03-17.
150 lines
4.2 KiB
CSS
150 lines
4.2 KiB
CSS
/***********************************************************************
|
|
* retro-b5500/emulator B5500DistributionAndDisplay.css
|
|
************************************************************************
|
|
* Copyright (c) 2012, Nigel Williams and Paul Kimpel.
|
|
* Licensed under the MIT License, see http://www.opensource.org/licenses/mit-license.php
|
|
************************************************************************
|
|
* B5500 Emulator syllable debugger style sheet.
|
|
************************************************************************
|
|
* 2012-11-25 P.Kimpel
|
|
* Original version, from webIU/B5500DistributionAndDisplay.css.
|
|
***********************************************************************/
|
|
|
|
BODY {
|
|
position: relative;
|
|
font-family: Arial, Helvetica, sans-serif;
|
|
font-size: small;
|
|
margin: 4px}
|
|
|
|
DIV#LogoDiv {
|
|
position: absolute;
|
|
background-color: #666;
|
|
border-radius: 0.5em;
|
|
width: 198px;
|
|
height: 104px;
|
|
right: 0;
|
|
top: 0}
|
|
|
|
DIV#BurroughsLogo {
|
|
background-color: black;
|
|
position: absolute;
|
|
top: 16px;
|
|
right: 16px;
|
|
border-top: 3px solid #EEE;
|
|
border-bottom: 3px solid #EEE}
|
|
|
|
DIV#B5500Logo {
|
|
background-color: #EEE;
|
|
font-family: Arial Narrow, Arial, Helvetica, sans-serif;
|
|
font-size: 24px;
|
|
color: #333333;
|
|
letter-spacing: 1px;
|
|
padding-left: 4px;
|
|
padding-right: 4px;
|
|
position: absolute;
|
|
top: 56px;
|
|
right: 16px}
|
|
|
|
IMG#BurroughsLogoImage {
|
|
width: 150px;
|
|
text-align: center;
|
|
vertical-align: middle;
|
|
padding-top: 3px;
|
|
padding-bottom: 3px;
|
|
padding-left: 8px;
|
|
padding-right: 8px}
|
|
|
|
TABLE.normal, TABLE.standard {
|
|
border-spacing: 0;
|
|
border-collapse: collapse}
|
|
|
|
TABLE.border{
|
|
border-color: #CCCCCC;
|
|
border-width: 1px;
|
|
border-style: solid}
|
|
|
|
CAPTION {
|
|
text-align: center;
|
|
padding-left: 4px;
|
|
padding-right: 4px;
|
|
font-weight: bold}
|
|
|
|
TABLE.normal>TBODY>TR>TD, TABLE.standard>TBODY>TR>TD {
|
|
padding-top: 1px;
|
|
padding-bottom: 1px;
|
|
padding-left: 2px;
|
|
padding-right: 2px}
|
|
|
|
TABLE.standard>THEAD>TR>TH, TABLE.standard>TBODY>TR>TD {
|
|
font-size: 85%}
|
|
|
|
TABLE.standard>THEAD>TR>TH, TABLE.normal>THEAD>TR>TH {
|
|
text-align: center;
|
|
padding-left: 0.5ex;
|
|
padding-right: 0.5ex;
|
|
font-weight: bold}
|
|
|
|
TABLE.border>THEAD>TR>TH, TABLE.border>TBODY>TR>TD {
|
|
border: 1px solid #CCCCCC}
|
|
|
|
TABLE#RegisterBank1 {
|
|
position: relative}
|
|
|
|
TABLE#RegisterBank2 {
|
|
position: absolute;
|
|
right: 0;
|
|
top: 120px}
|
|
|
|
TR {
|
|
vertical-align: middle}
|
|
|
|
TH {
|
|
vertical-align: bottom;
|
|
text-align: center;
|
|
padding-left: 2px;
|
|
padding-right: 2px;
|
|
font-family: "Arial", "Helvetica", sans-serif;
|
|
font-weight: bold}
|
|
|
|
TD#TMnemonic {
|
|
text-align: center;
|
|
background-color: #EEF;
|
|
font-size: smaller}
|
|
TD.notReady {
|
|
visibility: hidden}
|
|
TD.ready {
|
|
visibility: visible;
|
|
text-align: center;
|
|
font-weight: bold;
|
|
color: green}
|
|
TD.busy {
|
|
visibility: visible;
|
|
text-align: center;
|
|
font-weight: bold;
|
|
color: red}
|
|
|
|
INPUT.warn {
|
|
background-color: yellow}
|
|
|
|
.bold {
|
|
font-weight: bold}
|
|
|
|
.center {
|
|
text-align: center}
|
|
|
|
.rj {
|
|
text-align: right}
|
|
|
|
.data {
|
|
font-family: Lucida Sans Typewriter, Courier New, Courier, monospace}
|
|
|
|
.number {
|
|
font-family: Lucida Sans Typewriter, Courier New, Courier, monospace;
|
|
text-align: right}
|
|
|
|
.revcaption {
|
|
text-align: center;
|
|
color: white;
|
|
background-color: black;
|
|
font-weight: bold}
|