Add 2 files
Browse files- index.html +15 -2
- prompts.txt +2 -0
index.html
CHANGED
@@ -91,6 +91,7 @@
|
|
91 |
overflow: hidden;
|
92 |
z-index: 1;
|
93 |
transition: all 0.3s;
|
|
|
94 |
}
|
95 |
|
96 |
.grunge-btn:hover {
|
@@ -98,6 +99,11 @@
|
|
98 |
box-shadow: 0 5px 15px rgba(0,0,0,0.3);
|
99 |
}
|
100 |
|
|
|
|
|
|
|
|
|
|
|
101 |
.distorted-border {
|
102 |
position: relative;
|
103 |
overflow: hidden;
|
@@ -295,7 +301,7 @@
|
|
295 |
<div class="text-white text-xs">Stable Diffusion</div>
|
296 |
<div class="skill-level" style="width: 0%;"></div>
|
297 |
</div>
|
298 |
-
<div class="tool-item p-3 border border-gray-700 hover:border-white transition" data-
|
299 |
<div class="text-green-500 text-2xl mb-1">FC</div>
|
300 |
<div class="text-white text-xs">Final Cut Pro</div>
|
301 |
<div class="skill-level" style="width: 0%;"></div>
|
@@ -305,7 +311,9 @@
|
|
305 |
|
306 |
<!-- Contact button -->
|
307 |
<div class="text-center mb-6">
|
308 |
-
<button class="grunge-btn"
|
|
|
|
|
309 |
</div>
|
310 |
|
311 |
<!-- Footer -->
|
@@ -330,6 +338,11 @@
|
|
330 |
levelBar.style.width = '0%';
|
331 |
});
|
332 |
});
|
|
|
|
|
|
|
|
|
|
|
333 |
</script>
|
334 |
<p style="border-radius: 8px; text-align: center; font-size: 12px; color: #fff; margin-top: 16px;position: fixed; left: 8px; bottom: 8px; z-index: 10; background: rgba(0, 0, 0, 0.8); padding: 4px 8px;">Made with <img src="https://enzostvs-deepsite.hf.space/logo.svg" alt="DeepSite Logo" style="width: 16px; height: 16px; vertical-align: middle;display:inline-block;margin-right:3px;filter:brightness(0) invert(1);"><a href="https://enzostvs-deepsite.hf.space" style="color: #fff;text-decoration: underline;" target="_blank" >DeepSite</a> - 🧬 <a href="https://enzostvs-deepsite.hf.space?remix=Windmonk/cv" style="color: #fff;text-decoration: underline;" target="_blank" >Remix</a></p></body>
|
335 |
</html>
|
|
|
91 |
overflow: hidden;
|
92 |
z-index: 1;
|
93 |
transition: all 0.3s;
|
94 |
+
cursor: pointer;
|
95 |
}
|
96 |
|
97 |
.grunge-btn:hover {
|
|
|
99 |
box-shadow: 0 5px 15px rgba(0,0,0,0.3);
|
100 |
}
|
101 |
|
102 |
+
.grunge-btn:active {
|
103 |
+
transform: translateY(0);
|
104 |
+
box-shadow: 0 2px 5px rgba(0,0,0,0.3);
|
105 |
+
}
|
106 |
+
|
107 |
.distorted-border {
|
108 |
position: relative;
|
109 |
overflow: hidden;
|
|
|
301 |
<div class="text-white text-xs">Stable Diffusion</div>
|
302 |
<div class="skill-level" style="width: 0%;"></div>
|
303 |
</div>
|
304 |
+
<div class="tool-item p-3 border border-gray-700 hover:border-white transition" data-sskill="85">
|
305 |
<div class="text-green-500 text-2xl mb-1">FC</div>
|
306 |
<div class="text-white text-xs">Final Cut Pro</div>
|
307 |
<div class="skill-level" style="width: 0%;"></div>
|
|
|
311 |
|
312 |
<!-- Contact button -->
|
313 |
<div class="text-center mb-6">
|
314 |
+
<button class="grunge-btn" id="contactButton">
|
315 |
+
CONTACT FOR PROJECTS
|
316 |
+
</button>
|
317 |
</div>
|
318 |
|
319 |
<!-- Footer -->
|
|
|
338 |
levelBar.style.width = '0%';
|
339 |
});
|
340 |
});
|
341 |
+
|
342 |
+
// Add click handler for contact button
|
343 |
+
document.getElementById('contactButton').addEventListener('click', function() {
|
344 |
+
window.open('https://t.me/Windmonk', '_blank');
|
345 |
+
});
|
346 |
</script>
|
347 |
<p style="border-radius: 8px; text-align: center; font-size: 12px; color: #fff; margin-top: 16px;position: fixed; left: 8px; bottom: 8px; z-index: 10; background: rgba(0, 0, 0, 0.8); padding: 4px 8px;">Made with <img src="https://enzostvs-deepsite.hf.space/logo.svg" alt="DeepSite Logo" style="width: 16px; height: 16px; vertical-align: middle;display:inline-block;margin-right:3px;filter:brightness(0) invert(1);"><a href="https://enzostvs-deepsite.hf.space" style="color: #fff;text-decoration: underline;" target="_blank" >DeepSite</a> - 🧬 <a href="https://enzostvs-deepsite.hf.space?remix=Windmonk/cv" style="color: #fff;text-decoration: underline;" target="_blank" >Remix</a></p></body>
|
348 |
</html>
|
prompts.txt
CHANGED
@@ -0,0 +1,2 @@
|
|
|
|
|
|
|
1 |
+
давай сделаем что при нажатии на contact for projects их перекидывало по этой ссылке https://t.me/Windmonk
|
2 |
+
Отлично только в кнопке contact button убери значок телеграмм
|