85 lines
No EOL
2.4 KiB
HTML
85 lines
No EOL
2.4 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>Primary Research Station - kempinger.at</title>
|
|
<link rel="stylesheet" href="../style.css">
|
|
<style>
|
|
body {
|
|
font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
|
|
background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 100%);
|
|
color: #ffffff;
|
|
line-height: 1.6;
|
|
margin: 0;
|
|
min-height: 100vh;
|
|
}
|
|
|
|
.container {
|
|
max-width: 800px;
|
|
margin: 0 auto;
|
|
padding: 4rem 20px 2rem 20px;
|
|
}
|
|
|
|
.boxed-content {
|
|
background: rgba(255, 255, 255, 0.02);
|
|
border-radius: 20px;
|
|
padding: 3rem;
|
|
backdrop-filter: blur(10px);
|
|
border: 1px solid rgba(255, 255, 255, 0.1);
|
|
margin: 0 auto;
|
|
max-width: 700px;
|
|
}
|
|
|
|
h1 {
|
|
font-size: 2.5rem;
|
|
font-weight: 700;
|
|
color: #00d4ff;
|
|
text-align: center;
|
|
margin-bottom: 2rem;
|
|
}
|
|
|
|
.back-link {
|
|
display: inline-block;
|
|
margin-bottom: 2rem;
|
|
color: #00d4ff;
|
|
text-decoration: none;
|
|
font-weight: 500;
|
|
}
|
|
|
|
.back-link:hover {
|
|
text-decoration: underline;
|
|
}
|
|
|
|
.construction-message {
|
|
text-align: center;
|
|
margin-top: 2rem;
|
|
}
|
|
|
|
.construction-message img {
|
|
width: 80px;
|
|
opacity: 0.7;
|
|
}
|
|
</style>
|
|
</head>
|
|
|
|
<body>
|
|
<div class="container">
|
|
<a href="../index.html#lab" class="back-link">← Back to Laboratory</a>
|
|
<div class="boxed-content">
|
|
<h1>Primary Research Station</h1>
|
|
<!-- Blog content goes here -->
|
|
<div class="construction-message">
|
|
<img style="width: 100%;"
|
|
src="https://cdn.pixabay.com/photo/2017/08/11/08/22/under-construction-2629947_960_720.jpg"
|
|
alt="Under Construction">
|
|
<p><strong>Hardware page is under construction.</strong></p>
|
|
<p>Because, obviously, hardware is never finished.</p>
|
|
</div>
|
|
<!-- ...existing code... -->
|
|
</div>
|
|
</div>
|
|
</body>
|
|
|
|
</html> |