Refactoring hero page into smaller components

This commit is contained in:
AdamBtech
2025-06-02 10:17:56 +02:00
parent c4a14c6ec7
commit 5b192809a0
2 changed files with 17 additions and 17 deletions

View File

@@ -0,0 +1,17 @@
/* hero-display.component.css */
.scramble-text-glow {
text-shadow:
0 0 5px rgba(255, 255, 255, 0.3),
0 0 10px rgba(255, 255, 255, 0.2),
0 0 15px rgba(255, 255, 255, 0.1);
transition: text-shadow 0.3s ease;
}
/* Enhanced glow for binary characters */
.binary-glow {
text-shadow:
0 0 3px rgba(255, 255, 255, 0.4),
0 0 6px rgba(255, 255, 255, 0.3),
0 0 9px rgba(255, 255, 255, 0.2);
}

View File

@@ -1,17 +0,0 @@
/* hero-display.component.css */
.scramble-text-glow {
text-shadow:
0 0 5px rgba(255, 255, 255, 0.3),
0 0 10px rgba(255, 255, 255, 0.2),
0 0 15px rgba(255, 255, 255, 0.1);
transition: text-shadow 0.3s ease;
}
/* Enhanced glow for binary characters */
.binary-glow {
text-shadow:
0 0 3px rgba(255, 255, 255, 0.4),
0 0 6px rgba(255, 255, 255, 0.3),
0 0 9px rgba(255, 255, 255, 0.2);
}