Redesign: Rich cyberpunk aesthetic with animations

This commit is contained in:
Neo
2026-02-19 10:09:32 +00:00
parent 37acbd2945
commit 555d2a001d
2 changed files with 502 additions and 139 deletions

View File

@@ -1,10 +1,53 @@
@import url('https://fonts.googleapis.com/css2?family=JetBrains+Mono:wght@400;500;600;700&display=swap');
* {
box-sizing: border-box;
margin: 0;
padding: 0;
}
body {
background: #0f0f23;
color: white;
html, body {
background: #0a0a0f;
color: #e4e4e7;
font-family: 'JetBrains Mono', 'Fira Code', monospace;
}
body {
min-height: 100vh;
}
/* Scrollbar */
::-webkit-scrollbar {
width: 8px;
height: 8px;
}
::-webkit-scrollbar-track {
background: rgba(255,255,255,0.02);
}
::-webkit-scrollbar-thumb {
background: rgba(255,255,255,0.1);
border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
background: rgba(255,255,255,0.2);
}
/* Selection */
::selection {
background: rgba(255, 0, 80, 0.3);
color: #fff;
}
/* Animations */
@keyframes pulse {
0%, 100% { opacity: 1; }
50% { opacity: 0.5; }
}
@keyframes glow {
0%, 100% { box-shadow: 0 0 20px rgba(255, 0, 80, 0.3); }
50% { box-shadow: 0 0 40px rgba(255, 0, 80, 0.5); }
}