feat: deployments page with WIN95 card
This commit is contained in:
parent
8768e75239
commit
82b71fc9a0
1 changed files with 85 additions and 9 deletions
|
|
@ -8,6 +8,77 @@
|
|||
<link href="https://fonts.googleapis.com/css2?family=Orbitron:wght@400;700;900&family=JetBrains+Mono:wght@300;400;500;700&display=swap" rel="stylesheet">
|
||||
<link rel="stylesheet" href="/css/style.css">
|
||||
<link rel="stylesheet" href="/css/section.css">
|
||||
<style>
|
||||
.deploy-grid {
|
||||
display: grid;
|
||||
grid-template-columns: repeat(3, 1fr);
|
||||
gap: 1.5rem;
|
||||
max-width: 1400px;
|
||||
margin: 0 auto;
|
||||
padding: 0 2rem 3rem;
|
||||
}
|
||||
@media (max-width: 900px) { .deploy-grid { grid-template-columns: repeat(2, 1fr); } }
|
||||
@media (max-width: 600px) { .deploy-grid { grid-template-columns: 1fr; } }
|
||||
|
||||
.deploy-card {
|
||||
background: rgba(16, 16, 16, 0.85);
|
||||
border: 1px solid var(--border);
|
||||
border-left: 3px solid rgba(255, 170, 0, 0.6);
|
||||
padding: 1.5rem;
|
||||
cursor: pointer;
|
||||
transition: all 0.25s ease;
|
||||
text-decoration: none;
|
||||
display: block;
|
||||
}
|
||||
.deploy-card:hover {
|
||||
border-left-color: var(--mil-red);
|
||||
transform: translateY(-2px);
|
||||
box-shadow: 0 4px 20px rgba(255, 0, 0, 0.08);
|
||||
background: rgba(20, 20, 20, 0.95);
|
||||
}
|
||||
.deploy-card-status {
|
||||
font-family: 'JetBrains Mono', monospace;
|
||||
font-size: 0.6rem;
|
||||
color: #00cc44;
|
||||
letter-spacing: 2px;
|
||||
margin-bottom: 0.75rem;
|
||||
}
|
||||
.deploy-card-title {
|
||||
font-family: 'Orbitron', monospace;
|
||||
font-size: 0.85rem;
|
||||
color: #ffffff;
|
||||
letter-spacing: 2px;
|
||||
margin-bottom: 0.5rem;
|
||||
}
|
||||
.deploy-card-desc {
|
||||
font-family: 'JetBrains Mono', monospace;
|
||||
font-size: 0.65rem;
|
||||
color: rgba(255, 255, 255, 0.45);
|
||||
line-height: 1.5;
|
||||
margin-bottom: 1rem;
|
||||
}
|
||||
.deploy-card-tags {
|
||||
display: flex;
|
||||
gap: 0.5rem;
|
||||
flex-wrap: wrap;
|
||||
}
|
||||
.deploy-tag {
|
||||
font-family: 'JetBrains Mono', monospace;
|
||||
font-size: 0.55rem;
|
||||
color: rgba(255, 170, 0, 0.7);
|
||||
background: rgba(255, 170, 0, 0.08);
|
||||
border: 1px solid rgba(255, 170, 0, 0.15);
|
||||
padding: 0.2rem 0.5rem;
|
||||
letter-spacing: 1px;
|
||||
}
|
||||
.deploy-card-url {
|
||||
font-family: 'JetBrains Mono', monospace;
|
||||
font-size: 0.55rem;
|
||||
color: rgba(255, 255, 255, 0.25);
|
||||
margin-top: 0.75rem;
|
||||
letter-spacing: 1px;
|
||||
}
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
<div class="scanline-overlay"></div>
|
||||
|
|
@ -42,14 +113,19 @@
|
|||
<p class="section-header-sub">> Operational systems built by JAESWIFT — live, tested, and in the field.</p>
|
||||
</section>
|
||||
|
||||
<section class="subpage-content">
|
||||
<div class="subpage-placeholder">
|
||||
<div class="placeholder-icon">▲</div>
|
||||
<div class="placeholder-status">UNDER CONSTRUCTION</div>
|
||||
<div class="placeholder-text">This section is being prepared. Content deployment imminent.</div>
|
||||
<div class="placeholder-classification">CLASSIFICATION: PENDING // STATUS: STANDBY</div>
|
||||
<div class="deploy-grid">
|
||||
<a href="/win95" class="deploy-card">
|
||||
<div class="deploy-card-status">● ACTIVE</div>
|
||||
<div class="deploy-card-title">WIN95</div>
|
||||
<div class="deploy-card-desc">Windows 95 desktop environment recreated in the browser. Fully interactive retro OS simulation.</div>
|
||||
<div class="deploy-card-tags">
|
||||
<span class="deploy-tag">WEB APP</span>
|
||||
<span class="deploy-tag">RETRO</span>
|
||||
<span class="deploy-tag">INTERACTIVE</span>
|
||||
</div>
|
||||
<div class="deploy-card-url">jaeswift.xyz/win95</div>
|
||||
</a>
|
||||
</div>
|
||||
</section>
|
||||
|
||||
<footer class="footer">
|
||||
<div class="footer-container">
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue