mirror of
https://github.com/pkimpel/retro-b5500.git
synced 2026-02-12 11:17:29 +00:00
1. Initial implementation of a datacom terminal. 2. Initial implementation (read-only) of magnetic tape drives. 3. Further work towards getting P2 to function (but not working yet). 4. Allow device driver classes to be optionally included in the global UI script. 5. Fix callback arguments handling in SetCallback. 6. Decrease width of SPO window slightly. 7. Improve trapping and printing of SPO keystrokes, based on datacom implementation. 8. Minor performance tuning improvements. 9. Dump raw header words in octal in tools/B5500DiskDirList.html script. 10. New wiki pages and several updates to existing ones.
61 lines
2.0 KiB
CSS
61 lines
2.0 KiB
CSS
/***********************************************************************
|
|
* retro-b5500/emulator B5500DatacomUnit.css
|
|
************************************************************************
|
|
* Copyright (c) 2013, Nigel Williams and Paul Kimpel.
|
|
* Licensed under the MIT License, see http://www.opensource.org/licenses/mit-license.php
|
|
************************************************************************
|
|
* B5500 emulator Datacom web interface style sheet.
|
|
************************************************************************
|
|
* 2013-10-19 P.Kimpel
|
|
* Original version, from B5500SPOUnit.css.
|
|
***********************************************************************/
|
|
|
|
BODY {
|
|
position: relative;
|
|
margin: 4px}
|
|
|
|
PRE {
|
|
font-family: Lucida Sans Typewriter, Courier New, Courier, monospace;
|
|
font-size: 8pt;
|
|
margin: 0}
|
|
|
|
IFRAME#TermOut {
|
|
height: 480px;
|
|
width: 560px;
|
|
border: 1px solid black}
|
|
|
|
BODY.TermOut {
|
|
background-color: white;
|
|
font-family: Lucida Sans Typewriter, Courier New, Courier, monospace;
|
|
font-size: 8pt}
|
|
|
|
DIV#TermControlsDiv {
|
|
margin-bottom: 2px;
|
|
text-align: left}
|
|
|
|
BUTTON.greenButton {
|
|
background-color: #060;
|
|
color: white;
|
|
height: 24px;
|
|
font-family: Arial Rounded, Arial, Helvetica, sans-serif;
|
|
font-size: 8pt;
|
|
font-weight: bold;
|
|
border: 1px solid black;
|
|
border-radius: 4px}
|
|
|
|
BUTTON.greenLit {
|
|
background-color: #0F0}
|
|
|
|
BUTTON.blackBorder {
|
|
border: 1px solid black}
|
|
|
|
SPAN.annunciator {
|
|
color: black;
|
|
font-family: Arial Rounded, Arial, Helvetica, sans-serif;
|
|
font-size: 8pt;
|
|
font-weight: bold;
|
|
visibility: hidden}
|
|
|
|
SPAN.textLit {
|
|
color: red;
|
|
visibility: visible} |