Spaces:
Running
Running
Add 2 files
Browse files- index.html +59 -38
- prompts.txt +1 -0
index.html
CHANGED
@@ -1,41 +1,62 @@
|
|
1 |
<!DOCTYPE html>
|
2 |
-
<html>
|
3 |
-
|
4 |
-
<
|
5 |
-
<meta name="viewport" content="width=device-width, initial-scale=1.0"
|
6 |
-
<
|
|
|
|
|
7 |
<style>
|
8 |
-
|
9 |
-
|
10 |
-
|
11 |
-
|
12 |
-
|
13 |
-
|
14 |
-
|
15 |
-
|
16 |
-
|
17 |
-
|
18 |
-
|
19 |
-
|
20 |
-
|
21 |
-
|
22 |
-
|
23 |
-
|
24 |
-
|
25 |
-
|
26 |
-
|
27 |
-
|
28 |
-
|
29 |
-
|
30 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
31 |
</style>
|
32 |
-
|
33 |
-
|
34 |
-
<
|
35 |
-
|
36 |
-
|
37 |
-
</h1>
|
38 |
-
<img src="https://enzostvs-deepsite.hf.space/arrow.svg" class="arrow" />
|
39 |
-
<script></script>
|
40 |
-
<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=sumitjangir/sumit-jangir-space" style="color: #fff;text-decoration: underline;" target="_blank" >Remix</a></p></body>
|
41 |
-
</html>
|
|
|
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>WeatherSphere - Interactive Weather Dashboard</title>
|
7 |
+
<script src="https://cdn.tailwindcss.com"></script>
|
8 |
+
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css">
|
9 |
<style>
|
10 |
+
@keyframes float {
|
11 |
+
0%, 100% { transform: translateY(0); }
|
12 |
+
50% { transform: translateY(-10px); }
|
13 |
+
}
|
14 |
+
.floating {
|
15 |
+
animation: float 3s ease-in-out infinite;
|
16 |
+
}
|
17 |
+
.weather-card:hover {
|
18 |
+
transform: translateY(-5px);
|
19 |
+
box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
|
20 |
+
}
|
21 |
+
.sun {
|
22 |
+
background: radial-gradient(circle, #f6e05e 30%, transparent 70%);
|
23 |
+
box-shadow: 0 0 60px #f6e05e;
|
24 |
+
}
|
25 |
+
.rain-drop {
|
26 |
+
position: absolute;
|
27 |
+
width: 2px;
|
28 |
+
height: 10px;
|
29 |
+
background: linear-gradient(to bottom, transparent, #93c5fd);
|
30 |
+
border-radius: 0 0 50% 50%;
|
31 |
+
}
|
32 |
+
.cloud {
|
33 |
+
position: relative;
|
34 |
+
width: 100px;
|
35 |
+
height: 40px;
|
36 |
+
background: #e5e7eb;
|
37 |
+
border-radius: 50px;
|
38 |
+
}
|
39 |
+
.cloud:before, .cloud:after {
|
40 |
+
content: '';
|
41 |
+
position: absolute;
|
42 |
+
background: #e5e7eb;
|
43 |
+
border-radius: 50%;
|
44 |
+
}
|
45 |
+
.cloud:before {
|
46 |
+
width: 50px;
|
47 |
+
height: 50px;
|
48 |
+
top: -25px;
|
49 |
+
left: 10px;
|
50 |
+
}
|
51 |
+
.cloud:after {
|
52 |
+
width: 30px;
|
53 |
+
height: 30px;
|
54 |
+
top: -15px;
|
55 |
+
right: 15px;
|
56 |
+
}
|
57 |
</style>
|
58 |
+
</head>
|
59 |
+
<body class="bg-gradient-to-br from-blue-50 to-indigo-100 min-h-screen font-sans">
|
60 |
+
<div class="container mx-auto px-4 py-8">
|
61 |
+
|
62 |
+
</html>
|
|
|
|
|
|
|
|
|
|
prompts.txt
CHANGED
@@ -0,0 +1 @@
|
|
|
|
|
1 |
+
Hi
|