|
9 | 9 | <style> |
10 | 10 | body { |
11 | 11 | font-family: 'Orbitron', sans-serif; |
| 12 | + background: linear-gradient(-45deg, #1e1b4b, #312e81, #9333ea, #3b0764); |
| 13 | + background-size: 400% 400%; |
| 14 | + animation: gradientShift 15s ease infinite; |
12 | 15 | } |
| 16 | + |
| 17 | + @keyframes gradientShift { |
| 18 | + 0% { background-position: 0% 50%; } |
| 19 | + 50% { background-position: 100% 50%; } |
| 20 | + 100% { background-position: 0% 50%; } |
| 21 | + } |
| 22 | + |
13 | 23 | .glow-card { |
14 | | - box-shadow: 0 0 25px rgba(255, 255, 255, 0.15), 0 0 10px rgba(255, 255, 255, 0.1); |
| 24 | + background: rgba(255, 255, 255, 0.05); |
| 25 | + backdrop-filter: blur(10px); |
| 26 | + box-shadow: 0 0 25px rgba(255, 255, 255, 0.05), 0 0 10px rgba(255, 255, 255, 0.1); |
15 | 27 | transition: transform 0.3s ease, box-shadow 0.3s ease; |
16 | 28 | } |
| 29 | + |
17 | 30 | .glow-card:hover { |
18 | 31 | transform: scale(1.05); |
19 | | - box-shadow: 0 0 30px rgba(255, 255, 255, 0.3), 0 0 15px rgba(255, 255, 255, 0.2); |
| 32 | + box-shadow: 0 0 35px rgba(255, 255, 255, 0.2), 0 0 20px rgba(255, 255, 255, 0.2); |
20 | 33 | } |
21 | 34 | </style> |
22 | 35 | </head> |
23 | | -<body class="bg-gradient-to-br from-purple-900 via-indigo-900 to-blue-900 text-white min-h-screen p-8"> |
| 36 | +<body class="text-white min-h-screen p-8"> |
24 | 37 | <div class="max-w-6xl mx-auto"> |
25 | 38 | <header class="text-center mb-16"> |
26 | | - <h1 class="text-5xl font-extrabold mb-4 bg-gradient-to-r from-pink-500 via-yellow-500 to-blue-500 text-transparent bg-clip-text animate-pulse"> |
27 | | - 🎮 GatocDev's Projects |
| 39 | + <h1 class="text-5xl font-extrabold mb-4 bg-gradient-to-r from-yellow-400 via-pink-500 to-cyan-400 text-transparent bg-clip-text animate-pulse"> |
| 40 | + ✨ GatocDev's Projects |
28 | 41 | </h1> |
29 | | - <p class="text-lg text-gray-300"> |
| 42 | + <p class="text-lg text-gray-200">Interactive, creative, and cat-powered programming projects.</p> |
30 | 43 | </header> |
31 | 44 |
|
32 | 45 | <section class="grid grid-cols-1 sm:grid-cols-2 lg:grid-cols-3 gap-10"> |
33 | 46 | <!-- Project 1: Blockly JavaScript Builder --> |
34 | 47 | <a href="https://gatoc-idk.github.io/Blockly-JavaScript-builder/" target="_blank" |
35 | | - class="bg-gray-900 bg-opacity-80 rounded-3xl overflow-hidden glow-card"> |
36 | | - <img src="https://imgur.com/a/RIptUJw" alt="Blockly JavaScript Builder" |
37 | | - class="w-full h-48 object-contain bg-black" /> |
| 48 | + class="rounded-3xl overflow-hidden glow-card"> |
| 49 | + <img src="https://i.imgur.com/RIptUJw.png" alt="Blockly JavaScript Builder" |
| 50 | + class="w-full h-48 object-cover bg-black" /> |
38 | 51 | <div class="p-5"> |
39 | | - <h2 class="text-2xl font-bold text-cyan-400">Blockly JavaScript Builder</h2> |
40 | | - <p class="text-gray-400 mt-2 text-sm">Create JavaScript with drag-and-drop blocks in a fully custom environment.</p> |
41 | | - <button class="mt-4 px-4 py-2 bg-gradient-to-r from-cyan-500 to-blue-600 hover:from-cyan-400 hover:to-blue-500 rounded-lg font-medium shadow-md"> |
42 | | - start Project |
| 52 | + <h2 class="text-2xl font-bold text-cyan-300">Blockly JavaScript Builder</h2> |
| 53 | + <p class="text-gray-300 mt-2 text-sm">Create JavaScript with drag-and-drop blocks in a fully custom environment.</p> |
| 54 | + <button class="mt-4 px-4 py-2 bg-gradient-to-r from-cyan-400 to-blue-500 hover:from-cyan-300 hover:to-blue-400 rounded-lg font-medium shadow-md"> |
| 55 | + 🚀 Launch Project |
43 | 56 | </button> |
44 | 57 | </div> |
45 | 58 | </a> |
46 | 59 |
|
47 | 60 | <!-- Project 2: CatScript --> |
48 | 61 | <a href="https://gatoc-idk.github.io/CatScript/" target="_blank" |
49 | | - class="bg-gray-900 bg-opacity-80 rounded-3xl overflow-hidden glow-card"> |
| 62 | + class="rounded-3xl overflow-hidden glow-card"> |
50 | 63 | <img src="https://imgur.com/ljukn4G.png" alt="CatScript" |
51 | | - class="w-full h-48 object-contain bg-black" /> |
| 64 | + class="w-full h-48 object-cover bg-black" /> |
52 | 65 | <div class="p-5"> |
53 | | - <h2 class="text-2xl font-bold text-pink-400">CatScript</h2> |
54 | | - <p class="text-gray-400 mt-2 text-sm">A JavaScript-style cat language with canvas rendering .</p> |
55 | | - <button class="mt-4 px-4 py-2 bg-gradient-to-r from-pink-500 to-purple-600 hover:from-pink-400 hover:to-purple-500 rounded-lg font-medium shadow-md"> |
56 | | - Try CatScript |
| 66 | + <h2 class="text-2xl font-bold text-pink-300">CatScript</h2> |
| 67 | + <p class="text-gray-300 mt-2 text-sm">A JavaScript-style cat language with canvas rendering and meowtastic syntax.</p> |
| 68 | + <button class="mt-4 px-4 py-2 bg-gradient-to-r from-pink-400 to-purple-500 hover:from-pink-300 hover:to-purple-400 rounded-lg font-medium shadow-md"> |
| 69 | + 🐾 Try CatScript |
57 | 70 | </button> |
58 | 71 | </div> |
59 | 72 | </a> |
60 | 73 |
|
61 | | - <!-- Add more projects below as needed --> |
| 74 | + <!-- Add more projects here --> |
62 | 75 | </section> |
63 | 76 | </div> |
64 | 77 | </body> |
|
0 commit comments