Added amber-crt
This commit is contained in:
parent
fe82dd64d7
commit
5d030ca576
299
templates/amber-crt/index.html
Normal file
299
templates/amber-crt/index.html
Normal file
@ -0,0 +1,299 @@
|
||||
|
||||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<style>
|
||||
body {
|
||||
background: #1a1a1a;
|
||||
display: flex;
|
||||
justify-content: center;
|
||||
align-items: center;
|
||||
min-height: 100vh;
|
||||
margin: 0;
|
||||
font-family: monospace;
|
||||
padding: 40px;
|
||||
box-sizing: border-box;
|
||||
}
|
||||
|
||||
.crt-frame {
|
||||
background: #2b2b2b;
|
||||
padding: 40px 60px 80px 60px;
|
||||
border-radius: 15px;
|
||||
box-shadow: 0 0 20px rgba(0,0,0,0.5),
|
||||
inset 0 0 10px rgba(0,0,0,0.8);
|
||||
position: relative;
|
||||
border: 2px solid #222;
|
||||
box-sizing: border-box;
|
||||
}
|
||||
|
||||
@keyframes scroll {
|
||||
0% { transform: translateY(100%); }
|
||||
100% { transform: translateY(-100%); }
|
||||
}
|
||||
|
||||
.demo-text {
|
||||
position: absolute;
|
||||
color: #ffb632;
|
||||
font-family: "Courier New", monospace;
|
||||
font-size: 14px;
|
||||
line-height: 1.4;
|
||||
white-space: pre;
|
||||
animation: scroll 20s linear infinite;
|
||||
z-index: 1;
|
||||
padding: 20px;
|
||||
text-shadow: 0 0 5px rgba(255, 182, 50, 0.7);
|
||||
}
|
||||
|
||||
.control-panel {
|
||||
position: absolute;
|
||||
bottom: 0;
|
||||
left: 50%;
|
||||
transform: translateX(-50%);
|
||||
width: 200px;
|
||||
height: 70px;
|
||||
background: #2b2b2b;
|
||||
border-top: 2px solid #222;
|
||||
cursor: pointer;
|
||||
transition: transform 0.5s ease-in-out;
|
||||
transform-origin: top;
|
||||
display: flex;
|
||||
justify-content: center;
|
||||
align-items: center;
|
||||
font-size: 10px;
|
||||
color: #444;
|
||||
}
|
||||
|
||||
.control-panel.open {
|
||||
transform: translateX(-50%) rotateX(90deg);
|
||||
}
|
||||
|
||||
.knobs-container {
|
||||
position: absolute;
|
||||
bottom: 10px;
|
||||
left: 50%;
|
||||
transform: translateX(-50%);
|
||||
width: 180px;
|
||||
height: 50px;
|
||||
display: flex;
|
||||
justify-content: space-around;
|
||||
align-items: center;
|
||||
}
|
||||
|
||||
.knob {
|
||||
width: 30px;
|
||||
height: 30px;
|
||||
background: #1a1a1a;
|
||||
border-radius: 50%;
|
||||
border: 2px solid #333;
|
||||
position: relative;
|
||||
cursor: pointer;
|
||||
}
|
||||
|
||||
.knob::after {
|
||||
content: '';
|
||||
position: absolute;
|
||||
top: 50%;
|
||||
left: 50%;
|
||||
width: 2px;
|
||||
height: 12px;
|
||||
background: #444;
|
||||
transform: translate(-50%, -50%);
|
||||
}
|
||||
|
||||
.knob-label {
|
||||
position: absolute;
|
||||
bottom: -15px;
|
||||
left: 50%;
|
||||
transform: translateX(-50%);
|
||||
font-size: 8px;
|
||||
color: #666;
|
||||
white-space: nowrap;
|
||||
}
|
||||
|
||||
.manufacturer-logo {
|
||||
position: absolute;
|
||||
bottom: 20px;
|
||||
left: 30px;
|
||||
font-family: "Arial", sans-serif;
|
||||
font-size: 16px;
|
||||
font-weight: bold;
|
||||
color: transparent;
|
||||
text-transform: uppercase;
|
||||
letter-spacing: 1px;
|
||||
background: linear-gradient(145deg, #333, #2b2b2b);
|
||||
-webkit-background-clip: text;
|
||||
background-clip: text;
|
||||
text-shadow:
|
||||
1px 1px 1px rgba(0,0,0,0.2),
|
||||
-1px -1px 1px rgba(255,255,255,0.1);
|
||||
}
|
||||
|
||||
.energy-star {
|
||||
position: absolute;
|
||||
bottom: 15px;
|
||||
right: 30px;
|
||||
width: 50px;
|
||||
height: 50px;
|
||||
opacity: 0.7;
|
||||
}
|
||||
|
||||
.screen {
|
||||
width: 800px;
|
||||
height: 600px;
|
||||
background: #1a1208;
|
||||
border-radius: 10px;
|
||||
position: relative;
|
||||
overflow: hidden;
|
||||
border: 2px solid #444;
|
||||
}
|
||||
|
||||
.screen::before {
|
||||
content: "";
|
||||
position: absolute;
|
||||
top: 0;
|
||||
left: 0;
|
||||
right: 0;
|
||||
bottom: 0;
|
||||
background: linear-gradient(
|
||||
rgba(255, 182, 50, 0.03) 50%,
|
||||
rgba(0, 0, 0, 0.1) 50%
|
||||
);
|
||||
background-size: 100% 4px;
|
||||
pointer-events: none;
|
||||
animation: scanline 10s linear infinite;
|
||||
z-index: 2;
|
||||
}
|
||||
|
||||
.screen::after {
|
||||
content: "";
|
||||
position: absolute;
|
||||
top: 0;
|
||||
left: 0;
|
||||
right: 0;
|
||||
bottom: 0;
|
||||
background: radial-gradient(
|
||||
circle at center,
|
||||
rgba(255, 180, 50, 0.08) 0%,
|
||||
rgba(0,0,0,0.2) 90%
|
||||
);
|
||||
box-shadow: inset 0 0 30px rgba(255, 180, 50, 0.15);
|
||||
pointer-events: none;
|
||||
z-index: 3;
|
||||
}
|
||||
|
||||
iframe {
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
border: none;
|
||||
background: #000;
|
||||
filter: brightness(1.1) contrast(1.0) sepia(0.4) hue-rotate(5deg);
|
||||
position: relative;
|
||||
z-index: 1;
|
||||
}
|
||||
|
||||
.power-button {
|
||||
width: 15px;
|
||||
height: 15px;
|
||||
background: #444;
|
||||
border-radius: 50%;
|
||||
position: absolute;
|
||||
bottom: 15px;
|
||||
right: 30px;
|
||||
border: 2px solid #333;
|
||||
cursor: pointer;
|
||||
}
|
||||
|
||||
.power-led {
|
||||
width: 8px;
|
||||
height: 8px;
|
||||
background: #ffb632;
|
||||
border-radius: 50%;
|
||||
position: absolute;
|
||||
bottom: 18px;
|
||||
right: 55px;
|
||||
box-shadow: 0 0 5px #0f0;
|
||||
animation: blink 2s infinite;
|
||||
}
|
||||
|
||||
@keyframes scanline {
|
||||
0% {
|
||||
transform: translateY(0);
|
||||
}
|
||||
100% {
|
||||
transform: translateY(600px);
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
<div class="crt-frame">
|
||||
<div class="screen">
|
||||
<div class="demo-text">SYSTEM INITIALIZED...
|
||||
|
||||
>_ CHECKING MEMORY BANKS...
|
||||
BANK 1: OK
|
||||
BANK 2: OK
|
||||
BANK 3: OK
|
||||
BANK 4: OK
|
||||
|
||||
>_ INITIALIZING PERIPHERALS...
|
||||
KEYBOARD: DETECTED
|
||||
DISPLAY: AMBER PHOSPHOR CRT
|
||||
STORAGE: 64K RAM INSTALLED
|
||||
|
||||
>_ RUNNING DIAGNOSTICS...
|
||||
CPU: MOS 6502 @ 1MHz
|
||||
ROM: 16K SYSTEM ROM v2.1
|
||||
I/O: ALL PORTS RESPONDING
|
||||
|
||||
>_ LOADING OPERATING SYSTEM...
|
||||
LOADING BOOT SECTOR...
|
||||
VERIFYING SYSTEM FILES...
|
||||
MOUNTING FILE SYSTEM...
|
||||
|
||||
>_ SYSTEM READY
|
||||
AWAITING INPUT...
|
||||
|
||||
>_ INITIALIZING NETWORK...
|
||||
BAUD RATE: 9600
|
||||
PARITY: NONE
|
||||
STOP BITS: 1
|
||||
|
||||
>_ ESTABLISHING CONNECTION...
|
||||
DIALING...
|
||||
CARRIER DETECTED...
|
||||
HANDSHAKE COMPLETE...
|
||||
|
||||
>_ CONNECTION ESTABLISHED
|
||||
WELCOME TO TERMINAL v1.0
|
||||
COPYRIGHT (C) 1982
|
||||
</div>
|
||||
|
||||
</div>
|
||||
<div class="knobs-container">
|
||||
<div class="knob">
|
||||
<div class="knob-label">BRIGHT</div>
|
||||
</div>
|
||||
<div class="knob">
|
||||
<div class="knob-label">CONT</div>
|
||||
</div>
|
||||
<div class="knob">
|
||||
<div class="knob-label">V-H</div>
|
||||
</div>
|
||||
<div class="knob">
|
||||
<div class="knob-label">SYNC</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="control-panel" onclick="this.classList.toggle('open')">▼ DISPLAY CONTROLS ▼</div>
|
||||
<div class="manufacturer-logo">PACKARD BELL</div>
|
||||
<svg class="energy-star" viewBox="0 0 100 100" fill="#444">
|
||||
<path d="M50 5 L57 35 H88 L63 55 L72 85 L50 68 L28 85 L37 55 L12 35 H43 Z"/>
|
||||
<path d="M25 92 Q50 85 75 92" fill="none" stroke="#444" stroke-width="2"/>
|
||||
<text x="50" y="98" text-anchor="middle" font-size="8" font-family="Arial">ENERGY STAR</text>
|
||||
</svg>
|
||||
</body>
|
||||
</html>
|
||||
|
||||
<!-- https://claude.ai/chat/995c8625-485d-48e7-b16f-7c4b41d189d6 -->
|
Loading…
x
Reference in New Issue
Block a user