mirror of
https://github.com/pkimpel/retro-b5500.git
synced 2026-05-24 06:00:55 +00:00
62 lines
2.0 KiB
HTML
62 lines
2.0 KiB
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
|
<title>B5500 Blank Paper Page</title>
|
|
<!--
|
|
/***********************************************************************
|
|
* retro-b5500/emulator B5500BlankPaper.html
|
|
************************************************************************
|
|
* Copyright (c) 2014, Nigel Williams and Paul Kimpel.
|
|
* Licensed under the MIT License, see
|
|
* http://www.opensource.org/licenses/mit-license.php
|
|
************************************************************************
|
|
* B5500 user interface blank page for use with SPO, line printer, terms, etc.
|
|
************************************************************************
|
|
* 2014-07-26 P.Kimpel
|
|
* Original version, from thin air.
|
|
***********************************************************************/
|
|
-->
|
|
<meta name="Author" content="Nigel Williams & Paul Kimpel">
|
|
<meta http-equiv="Content-Script-Type" content="text/javascript">
|
|
<meta http-equiv="Content-Style-Type" content="text/css">
|
|
<link id=defaultStyleSheet rel=stylesheet type="text/css" href="B5500Common.css">
|
|
<style>
|
|
BODY {
|
|
position: relative;
|
|
overflow-x: hidden;
|
|
background-color: white}
|
|
#Paper {
|
|
position: relative;
|
|
margin: 0;
|
|
font-size: 8pt}
|
|
#Spacer {
|
|
margin-top: 2000px}
|
|
#InputBox {
|
|
position: absolute;
|
|
left: 4px;
|
|
bottom: 4px;
|
|
display: none;
|
|
margin: 0;
|
|
padding: 0;
|
|
border: none;
|
|
background-color: #FF9}
|
|
#InputBox.visible {
|
|
display: block}
|
|
#InputBox:focus {
|
|
border: none;
|
|
outline: none} /* to suppress Chrome's default outline */
|
|
#EndOfPaper {
|
|
height: 1px;
|
|
border: 0;
|
|
opacity: 0}
|
|
</style>
|
|
</head>
|
|
|
|
<body>
|
|
<div id=Spacer></div>
|
|
<pre id=Paper class=paper> </pre>
|
|
<input id=InputBox type=text size=72 maxlength=72>
|
|
<div id=EndOfPaper> </div>
|
|
</body>
|
|
</html> |