maxim / index.html
Tomic-009's picture
undefined - Follow Up Deployment
20e302b verified
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Zeal Clone</title>
<script src="https://cdn.tailwindcss.com"></script>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css">
<style>
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700&display=swap');
body {
font-family: 'Montserrat', sans-serif;
background-color: #121212;
color: white;
}
.progress-bar {
height: 4px;
background-color: #535353;
border-radius: 2px;
cursor: pointer;
}
.progress {
height: 100%;
background-color: #1db954;
border-radius: 2px;
width: 30%;
}
.album-art {
transition: transform 0.3s ease;
}
.album-art:hover {
transform: scale(1.05);
}
.playlist-item:hover {
background-color: #282828;
}
.volume-slider {
-webkit-appearance: none;
width: 100%;
height: 4px;
background: #535353;
border-radius: 2px;
}
.volume-slider::-webkit-slider-thumb {
-webkit-appearance: none;
width: 12px;
height: 12px;
background: white;
border-radius: 50%;
cursor: pointer;
}
@keyframes spin {
0% { transform: rotate(0deg); }
100% { transform: rotate(360deg); }
}
.playing .album-art {
animation: spin 20s linear infinite;
}
@media (max-width: 768px) {
.sidebar {
display: none;
}
.main-content {
margin-left: 0;
}
}
</style>
</head>
<body class="h-screen flex flex-col">
<!-- Main Container -->
<div class="flex flex-1 overflow-hidden">
<!-- Sidebar -->
<div class="sidebar w-64 bg-black p-6 flex flex-col">
<div class="mb-8">
<h1 class="text-2xl font-bold text-white">
<i class="fab fa-spotify text-green-500 mr-2"></i> Spotify
</h1>
</div>
<nav class="mb-8">
<ul class="space-y-4">
<li>
<a href="#" class="flex items-center text-white hover:text-green-500">
<i class="fas fa-home mr-4"></i> Home
</a>
</li>
<li>
<a href="#" class="flex items-center text-gray-400 hover:text-white">
<i class="fas fa-search mr-4"></i> Search
</a>
</li>
<li>
<a href="#" class="flex items-center text-gray-400 hover:text-white">
<i class="fas fa-book mr-4"></i> Your Library
</a>
<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>
</html>