mirror of
https://github.com/pkimpel/retro-220.git
synced 2026-01-13 15:18:24 +00:00
1. Commit initial (incomplete) implementation of magnetic tape drives (TSU) and control: MLS, MRW, MDA, MIW, MIR, MPF, MPB, MPE, MIB, MIE. 2. Change B220SetCallback.js "setImmediate" mechanism to use DOM Promises instead of window.postMessage(). 3. Minor styling and window positioning changes.
58 lines
1.8 KiB
CSS
58 lines
1.8 KiB
CSS
/***********************************************************************
|
|
* retro-220/webUI B220MagTapeControl.css
|
|
************************************************************************
|
|
* Copyright (c) 2017, Paul Kimpel.
|
|
* Licensed under the MIT License, see
|
|
* http://www.opensource.org/licenses/mit-license.php
|
|
************************************************************************
|
|
* Burroughs 220 emulator Magnetic Tape Control style sheet.
|
|
************************************************************************
|
|
* 2017-07-09 P.Kimpel
|
|
* Original version, from retro-205 D205MagTapeControl.css.
|
|
***********************************************************************/
|
|
|
|
DIV.panelRegCaption { /* Overrides class in B220Common.css */
|
|
border-top: none}
|
|
|
|
#mtControlBody {
|
|
height: 100%;
|
|
min-height: 100%;
|
|
overflow: hidden;
|
|
padding: 0}
|
|
|
|
#PanelSurface {
|
|
position: absolute;
|
|
top: 0;
|
|
bottom: 0;
|
|
left: 0;
|
|
right: 0;
|
|
margin: 0}
|
|
|
|
#ClearBtn {
|
|
bottom: 60px;
|
|
left: 8px;
|
|
border: 10px solid #CCC;
|
|
box-shadow: 3px 3px 2px #999}
|
|
#ClearBtnCaption {
|
|
bottom: 48px;
|
|
left: 8px;
|
|
width: 32px}
|
|
|
|
#MiscRegPanel {
|
|
left: 52px;
|
|
top: 4px;
|
|
width: 144px;
|
|
height: 128px}
|
|
|
|
#CRegPanel {
|
|
left: 208px;
|
|
top: 4px;
|
|
width: 192px;
|
|
height: 128px}
|
|
|
|
#TRegPanel {
|
|
left: 412px;
|
|
top: 4px;
|
|
width: 288px;
|
|
height: 128px}
|