Skip to content

Commit a9a440a

Browse files
authored
Update index.html
1 parent 1d2a9c4 commit a9a440a

File tree

1 file changed

+33
-20
lines changed

1 file changed

+33
-20
lines changed

index.html

Lines changed: 33 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -9,56 +9,69 @@
99
<style>
1010
body {
1111
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;
1215
}
16+
17+
@keyframes gradientShift {
18+
0% { background-position: 0% 50%; }
19+
50% { background-position: 100% 50%; }
20+
100% { background-position: 0% 50%; }
21+
}
22+
1323
.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);
1527
transition: transform 0.3s ease, box-shadow 0.3s ease;
1628
}
29+
1730
.glow-card:hover {
1831
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);
2033
}
2134
</style>
2235
</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">
2437
<div class="max-w-6xl mx-auto">
2538
<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
2841
</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>
3043
</header>
3144

3245
<section class="grid grid-cols-1 sm:grid-cols-2 lg:grid-cols-3 gap-10">
3346
<!-- Project 1: Blockly JavaScript Builder -->
3447
<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" />
3851
<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
4356
</button>
4457
</div>
4558
</a>
4659

4760
<!-- Project 2: CatScript -->
4861
<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">
5063
<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" />
5265
<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
5770
</button>
5871
</div>
5972
</a>
6073

61-
<!-- Add more projects below as needed -->
74+
<!-- Add more projects here -->
6275
</section>
6376
</div>
6477
</body>

0 commit comments

Comments
 (0)