undefined - Initial Deployment
Browse files- README.md +6 -4
- index.html +110 -19
README.md
CHANGED
@@ -1,10 +1,12 @@
|
|
1 |
---
|
2 |
-
title:
|
3 |
-
emoji:
|
4 |
-
colorFrom:
|
5 |
colorTo: red
|
6 |
sdk: static
|
7 |
pinned: false
|
|
|
|
|
8 |
---
|
9 |
|
10 |
-
Check out the configuration reference at https://huggingface.co/docs/hub/spaces-config-reference
|
|
|
1 |
---
|
2 |
+
title: maxim
|
3 |
+
emoji: 🐳
|
4 |
+
colorFrom: red
|
5 |
colorTo: red
|
6 |
sdk: static
|
7 |
pinned: false
|
8 |
+
tags:
|
9 |
+
- deepsite
|
10 |
---
|
11 |
|
12 |
+
Check out the configuration reference at https://huggingface.co/docs/hub/spaces-config-reference
|
index.html
CHANGED
@@ -1,19 +1,110 @@
|
|
1 |
-
<!
|
2 |
-
<html>
|
3 |
-
|
4 |
-
|
5 |
-
|
6 |
-
|
7 |
-
|
8 |
-
|
9 |
-
|
10 |
-
|
11 |
-
|
12 |
-
|
13 |
-
|
14 |
-
|
15 |
-
|
16 |
-
|
17 |
-
|
18 |
-
|
19 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
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>Spotify Clone</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 |
+
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700&display=swap');
|
11 |
+
|
12 |
+
body {
|
13 |
+
font-family: 'Montserrat', sans-serif;
|
14 |
+
background-color: #121212;
|
15 |
+
color: white;
|
16 |
+
}
|
17 |
+
|
18 |
+
.progress-bar {
|
19 |
+
height: 4px;
|
20 |
+
background-color: #535353;
|
21 |
+
border-radius: 2px;
|
22 |
+
cursor: pointer;
|
23 |
+
}
|
24 |
+
|
25 |
+
.progress {
|
26 |
+
height: 100%;
|
27 |
+
background-color: #1db954;
|
28 |
+
border-radius: 2px;
|
29 |
+
width: 30%;
|
30 |
+
}
|
31 |
+
|
32 |
+
.album-art {
|
33 |
+
transition: transform 0.3s ease;
|
34 |
+
}
|
35 |
+
|
36 |
+
.album-art:hover {
|
37 |
+
transform: scale(1.05);
|
38 |
+
}
|
39 |
+
|
40 |
+
.playlist-item:hover {
|
41 |
+
background-color: #282828;
|
42 |
+
}
|
43 |
+
|
44 |
+
.volume-slider {
|
45 |
+
-webkit-appearance: none;
|
46 |
+
width: 100%;
|
47 |
+
height: 4px;
|
48 |
+
background: #535353;
|
49 |
+
border-radius: 2px;
|
50 |
+
}
|
51 |
+
|
52 |
+
.volume-slider::-webkit-slider-thumb {
|
53 |
+
-webkit-appearance: none;
|
54 |
+
width: 12px;
|
55 |
+
height: 12px;
|
56 |
+
background: white;
|
57 |
+
border-radius: 50%;
|
58 |
+
cursor: pointer;
|
59 |
+
}
|
60 |
+
|
61 |
+
@keyframes spin {
|
62 |
+
0% { transform: rotate(0deg); }
|
63 |
+
100% { transform: rotate(360deg); }
|
64 |
+
}
|
65 |
+
|
66 |
+
.playing .album-art {
|
67 |
+
animation: spin 20s linear infinite;
|
68 |
+
}
|
69 |
+
|
70 |
+
@media (max-width: 768px) {
|
71 |
+
.sidebar {
|
72 |
+
display: none;
|
73 |
+
}
|
74 |
+
|
75 |
+
.main-content {
|
76 |
+
margin-left: 0;
|
77 |
+
}
|
78 |
+
}
|
79 |
+
</style>
|
80 |
+
</head>
|
81 |
+
<body class="h-screen flex flex-col">
|
82 |
+
<!-- Main Container -->
|
83 |
+
<div class="flex flex-1 overflow-hidden">
|
84 |
+
<!-- Sidebar -->
|
85 |
+
<div class="sidebar w-64 bg-black p-6 flex flex-col">
|
86 |
+
<div class="mb-8">
|
87 |
+
<h1 class="text-2xl font-bold text-white">
|
88 |
+
<i class="fab fa-spotify text-green-500 mr-2"></i> Spotify
|
89 |
+
</h1>
|
90 |
+
</div>
|
91 |
+
|
92 |
+
<nav class="mb-8">
|
93 |
+
<ul class="space-y-4">
|
94 |
+
<li>
|
95 |
+
<a href="#" class="flex items-center text-white hover:text-green-500">
|
96 |
+
<i class="fas fa-home mr-4"></i> Home
|
97 |
+
</a>
|
98 |
+
</li>
|
99 |
+
<li>
|
100 |
+
<a href="#" class="flex items-center text-gray-400 hover:text-white">
|
101 |
+
<i class="fas fa-search mr-4"></i> Search
|
102 |
+
</a>
|
103 |
+
</li>
|
104 |
+
<li>
|
105 |
+
<a href="#" class="flex items-center text-gray-400 hover:text-white">
|
106 |
+
<i class="fas fa-book mr-4"></i> Your Library
|
107 |
+
</a>
|
108 |
+
|
109 |
+
<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=Tomic-009/maxim" style="color: #fff;text-decoration: underline;" target="_blank" >Remix</a></p></body>
|
110 |
+
</html>
|