Spaces:
Running
Running
File size: 2,841 Bytes
e78c6fc | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 | <!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>data.chechensky.ru</title>
<script src="https://cdn.tailwindcss.com"></script>
<script src="https://unpkg.com/feather-icons"></script>
<script src="https://cdn.jsdelivr.net/npm/feather-icons/dist/feather.min.js"></script>
<script>
tailwind.config = {
theme: {
extend: {
colors: {
dark: '#0a0a0a',
neon: '#39FF14'
}
}
}
}
</script>
<style>
@import url('https://fonts.googleapis.com/css2?family=Major+Mono+Display&display=swap');
.typewriter {
font-family: 'Major Mono Display', monospace;
}
.glow {
text-shadow: 0 0 5px #39FF14, 0 0 10px #39FF14;
}
.terminal-cursor {
animation: blink 1s step-end infinite;
}
@keyframes blink {
from, to { opacity: 1 }
50% { opacity: 0 }
}
body {
background-color: #0a0a0a;
overflow-x: hidden;
}
.scanline {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: linear-gradient(
to bottom,
rgba(57, 255, 20, 0.05) 0%,
rgba(57, 255, 20, 0) 10%
);
background-size: 100% 8px;
pointer-events: none;
animation: scan 8s linear infinite;
}
@keyframes scan {
0% { transform: translateY(-100%); }
100% { transform: translateY(100%); }
}
</style>
</head>
<body class="bg-dark text-neon min-h-screen flex flex-col">
<div class="scanline"></div>
<header class="border-b border-neon/20 py-6 px-4">
<div class="container mx-auto flex justify-between items-center">
<h1 class="text-2xl font-bold glow">data.chechensky.ru</h1>
</div>
</header>
<main class="flex-grow flex items-center justify-center">
<div class="container mx-auto px-4">
<div class="max-w-3xl mx-auto text-center">
<div class="typewriter text-5xl mb-8 glow">
<span>WELCOME</span>
</div>
<p class="text-neon/80 mb-12 text-xl">
THIS IS A DATA VAULT<br>
NOTHING MORE, NOTHING LESS
</p>
</div>
</div>
</main>
<footer class="border-t border-neon/20 py-6 px-4">
<div class="container mx-auto text-center text-neon/50">
data.chechensky.ru - minimal data storage
</div>
</body>
</html> |