index.html 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="UTF-8" />
  5. <meta name="viewport" content="width=device-width, initial-scale=1.0" />
  6. <title>Contact Homepage</title>
  7. <script src="https://cdn.tailwindcss.com"></script>
  8. <style>
  9. /* Holographic Gleam Effect */
  10. .holographic-gleam::before {
  11. content: '';
  12. position: absolute;
  13. top: -10%;
  14. left: -50%;
  15. width: 200%;
  16. height: 200%;
  17. background: linear-gradient(
  18. 110deg,
  19. rgba(0, 255, 255, 0) 40%,
  20. rgba(0, 255, 255, 0.5) 48%,
  21. rgba(255, 0, 255, 0.5) 52%,
  22. rgba(255, 0, 255, 0) 60%
  23. );
  24. background-size: 200% 100%;
  25. animation: holographic-gleam 3s linear infinite;
  26. transform: rotate(25deg);
  27. z-index: 1;
  28. opacity: 1; /* Always active */
  29. }
  30. @keyframes holographic-gleam {
  31. 0% { background-position: 200% 0; }
  32. 100% { background-position: -200% 0; }
  33. }
  34. @keyframes spin {
  35. from { transform: rotate(0deg); }
  36. to { transform: rotate(360deg); }
  37. }
  38. </style>
  39. </head>
  40. <body class="bg-slate-100">
  41. <div id="root"></div>
  42. <script type="module" src="/src/index.tsx"></script>
  43. </body>
  44. </html>