mirror of
https://github.com/pkimpel/retro-220.git
synced 2026-01-13 15:18:24 +00:00
1. Initial implementation of partial-word operators CFA, CFR, IFL, DFL, DLB, BFA, BFR, STA, STR, STB. 2. Implemement ADL, IBB, DBB, RTF, BOF, BRP, BSA, BCH, BCL, BCE, BCU, BCS, SOR, SOH, IOM, LDR, LDB, LBC, LSA, STP, CLA, CLR, CLB, CLL, all shifts. 3. Implement variable-length BCD adder. 4. Additional arithmetics methods for Register class. 5. Correct re-focus of ConsoleKeyboard window. 6. Allow ConsolePrinter CR/LF buttons to operate while in remote state.
107 lines
2.9 KiB
CSS
107 lines
2.9 KiB
CSS
/***********************************************************************
|
|
* retro-220/webUI B220SystemConfig.css
|
|
************************************************************************
|
|
* Copyright (c) 2017, Paul Kimpel.
|
|
* Licensed under the MIT License, see
|
|
* http://www.opensource.org/licenses/mit-license.php
|
|
************************************************************************
|
|
* Burroughs 220 Emulator System Configuration web interface style sheet.
|
|
************************************************************************
|
|
* 2017-01-01 P.Kimpel
|
|
* Original version, from retro-205 webUI/D205SystemConfig.css.
|
|
***********************************************************************/
|
|
|
|
#configBody {
|
|
height: 100%;
|
|
min-height: 100%;
|
|
overflow: auto;
|
|
padding: 0}
|
|
|
|
#configDiv {
|
|
position: absolute;
|
|
top: 0;
|
|
bottom: 0;
|
|
left: 0;
|
|
right: 0;
|
|
margin: 4px}
|
|
|
|
#PageHeading {
|
|
position: relative;
|
|
height: 40px;
|
|
width: 100%}
|
|
|
|
#MessageArea {
|
|
position: absolute;
|
|
text-align: right;
|
|
top: 48px;
|
|
left: 90px;
|
|
right: 8px;
|
|
width: auto;
|
|
font-size: 8pt}
|
|
|
|
#SaveBtn {
|
|
position: absolute;
|
|
top: 68px;
|
|
right: 8px;
|
|
height: 20px}
|
|
|
|
#CancelBtn {
|
|
position: absolute;
|
|
top: 68px;
|
|
right: 80px;
|
|
height: 20px}
|
|
|
|
#DefaultsBtn {
|
|
position: absolute;
|
|
top: 68px;
|
|
right: 200px;
|
|
width: 100px;
|
|
height: 20px}
|
|
|
|
#SysConfigHeading {
|
|
position: absolute;
|
|
top: 8px;
|
|
left: 8px;
|
|
font-family: DejaVuSansWeb, sans-serif;
|
|
font-size: 18px}
|
|
|
|
.heading {
|
|
margin-top: 1em;
|
|
margin-bottom: 0.25em;
|
|
font-family: DejaVuSansWeb, sans-serif;
|
|
font-size: 18px}
|
|
|
|
#B220Logo {
|
|
position: absolute;
|
|
top: 8px;
|
|
right: 8px;
|
|
font-size: 6pt;
|
|
padding-left: 4px;
|
|
padding-right: 4px}
|
|
|
|
#RetroLogoImage {
|
|
vertical-align: bottom;
|
|
margin: 4px}
|
|
|
|
#SystemMemorySize {
|
|
text-align: center}
|
|
|
|
#ConsoleOutputTable,
|
|
#CardatronTable,
|
|
#MagTapeOptionsTable,
|
|
#MagTapeTable {
|
|
border-spacing: 0;
|
|
border-collapse: collapse}
|
|
|
|
#ConsoleOutputTable TH,
|
|
#ConsoleOutputTable TD,
|
|
#CardatronTable TH,
|
|
#CardatronTable TD,
|
|
#MagTapeOptionsTable TH,
|
|
#MagTapeOptionsTable TD,
|
|
#MagTapeTable TH,
|
|
#MagTapeTable TD {
|
|
padding-left: 4px;
|
|
padding-right: 4px;
|
|
white-space: nowrap}
|