|
| 1 | +<!DOCTYPE html> |
| 2 | +<html lang="en"> |
| 3 | +<head> |
| 4 | + <meta charset="UTF-8"> |
| 5 | + <title>Challenge Submissions | Codextream Community</title> |
| 6 | + <meta name="viewport" content="width=device-width, initial-scale=1.0"> |
| 7 | + <!-- Tailwind CSS CDN --> |
| 8 | + <script src="https://cdn.tailwindcss.com"></script> |
| 9 | + <!-- Font Awesome for icons --> |
| 10 | + <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0-beta3/css/all.min.css"> |
| 11 | + <!-- Google Fonts for Space Grotesk --> |
| 12 | + <link href="https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@400;500;600;700&display=swap" rel="stylesheet"> |
| 13 | + <!-- Tab Icon --> |
| 14 | + <link rel="icon" href="https://codextream.in/logo.svg"> |
| 15 | + |
| 16 | + <style> |
| 17 | + /* Custom CSS Variables for the new dark theme */ |
| 18 | + :root { |
| 19 | + --color-primary: #00C9B1; /* Vibrant Teal/Green */ |
| 20 | + --color-secondary: #008D79; /* Darker Teal */ |
| 21 | + --color-background-base: #0A0A0A; /* Very dark base background */ |
| 22 | + --color-glass-bg: rgba(255, 255, 255, 0.05); /* More transparent, lighter glass background */ |
| 23 | + --color-glass-border: rgba(255, 255, 255, 0.1); /* Subtle white border for glass */ |
| 24 | + --color-text-light: #F0F0F0; /* Light text for contrast */ |
| 25 | + --color-text-muted: #A0A0A0; /* Muted text for descriptions */ |
| 26 | + --color-shadow: rgba(0, 0, 0, 0.4); /* More pronounced shadows for depth */ |
| 27 | + --blur-intensity: blur(25px); /* Even more intense blur for diffused glass effect */ |
| 28 | + --background-patch-color: rgba(0, 201, 177, 0.12); /* Slightly more opaque color for blurred patches */ |
| 29 | + } |
| 30 | + |
| 31 | + body { |
| 32 | + font-family: 'Space Grotesk', sans-serif; /* Apply Space Grotesk font */ |
| 33 | + background-color: var(--color-background-base); /* Solid dark background */ |
| 34 | + color: var(--color-text-light); |
| 35 | + transition: background-color 0.3s ease-in-out, color 0.3s ease-in-out; |
| 36 | + min-height: 100vh; |
| 37 | + position: relative; /* Needed for patches */ |
| 38 | + overflow-x: hidden; /* Prevent horizontal scroll from patches */ |
| 39 | + } |
| 40 | + |
| 41 | + /* Common styles for background patches */ |
| 42 | + .background-patch { |
| 43 | + position: absolute; |
| 44 | + background-color: var(--background-patch-color); |
| 45 | + border-radius: 50%; |
| 46 | + z-index: -1; /* Send behind content */ |
| 47 | + pointer-events: none; /* Do not interfere with clicks */ |
| 48 | + } |
| 49 | + |
| 50 | + /* Custom glassmorphism effect for all relevant elements */ |
| 51 | + .glass { |
| 52 | + background-color: var(--color-glass-bg); |
| 53 | + backdrop-filter: var(--blur-intensity); |
| 54 | + border: 1px solid var(--color-glass-border); |
| 55 | + box-shadow: 0 4px 30px rgba(0, 0, 0, 0.2); /* Soft shadow for depth */ |
| 56 | + transition: all 0.3s ease-in-out; |
| 57 | + } |
| 58 | + |
| 59 | + /* Navbar specific styles */ |
| 60 | + .navbar { |
| 61 | + background-color: var(--color-glass-bg); /* Use glass background for navbar */ |
| 62 | + backdrop-filter: var(--blur-intensity); |
| 63 | + border-bottom: 1px solid var(--color-glass-border); |
| 64 | + box-shadow: 0 4px 30px rgba(0, 0, 0, 0.2); /* Consistent shadow for navbar */ |
| 65 | + } |
| 66 | + |
| 67 | + /* Project card specific background - now fully glass */ |
| 68 | + .project-card { |
| 69 | + background-color: var(--color-glass-bg); /* Now a glass effect too */ |
| 70 | + backdrop-filter: var(--blur-intensity); |
| 71 | + border: 1px solid var(--color-glass-border); /* Consistent border */ |
| 72 | + box-shadow: 0 4px 30px rgba(0,0,0,0.2); /* Soft shadow for cards */ |
| 73 | + } |
| 74 | + |
| 75 | + /* Search input specific styles to apply glass */ |
| 76 | + .search-wrap input#search { |
| 77 | + background-color: var(--color-glass-bg); |
| 78 | + backdrop-filter: var(--blur-intensity); |
| 79 | + border: 1px solid var(--color-glass-border); /* Match glass border */ |
| 80 | + box-shadow: 0 4px 30px rgba(0, 0, 0, 0.2); /* Match glass shadow */ |
| 81 | + } |
| 82 | + /* Override specific focus state for search to match primary color */ |
| 83 | + .search-wrap input#search:focus { |
| 84 | + border-color: var(--color-primary); /* Keep primary color on focus */ |
| 85 | + background-color: rgba(255, 255, 255, 0.05); /* Slightly lighter on focus */ |
| 86 | + } |
| 87 | + |
| 88 | + |
| 89 | + /* Adjust hover effect for cards */ |
| 90 | + .project-card:hover { |
| 91 | + transform: translateY(-8px); /* More pronounced lift */ |
| 92 | + box-shadow: 0 15px 40px var(--color-shadow); /* Stronger shadow on hover */ |
| 93 | + } |
| 94 | + |
| 95 | + /* Space Grotesk font specifics */ |
| 96 | + .font-space-grotesk { |
| 97 | + font-family: 'Space Grotesk', sans-serif; |
| 98 | + } |
| 99 | + |
| 100 | + /* Keyframe for pulse effect on heart */ |
| 101 | + @keyframes pulse { |
| 102 | + 0% { transform: scale(1); } |
| 103 | + 50% { transform: scale(1.1); } |
| 104 | + 100% { transform: scale(1); } |
| 105 | + } |
| 106 | + |
| 107 | + /* Keyframes for patch movement animations */ |
| 108 | + @keyframes movePatch1 { |
| 109 | + 0% { transform: translate(0, 0) scale(1); } |
| 110 | + 50% { transform: translate(50px, -30px) scale(1.05); } |
| 111 | + 100% { transform: translate(0, 0) scale(1); } |
| 112 | + } |
| 113 | + |
| 114 | + @keyframes movePatch2 { |
| 115 | + 0% { transform: translate(0, 0) scale(1); } |
| 116 | + 50% { transform: translate(-40px, 60px) scale(1.1); } |
| 117 | + 100% { transform: translate(0, 0) scale(1); } |
| 118 | + } |
| 119 | + |
| 120 | + @keyframes movePatch3 { |
| 121 | + 0% { transform: translate(0, 0) scale(1); } |
| 122 | + 50% { transform: translate(30px, 40px) scale(1.03); } |
| 123 | + 100% { transform: translate(0, 0) scale(1); } |
| 124 | + } |
| 125 | + @keyframes movePatch4 { |
| 126 | + 0% { transform: translate(0, 0) scale(1); } |
| 127 | + 50% { transform: translate(-20px, -50px) scale(1.08); } |
| 128 | + 100% { transform: translate(0, 0) scale(1); } |
| 129 | + } |
| 130 | + @keyframes movePatch5 { |
| 131 | + 0% { transform: translate(0, 0) scale(1); } |
| 132 | + 50% { transform: translate(60px, -10px) scale(1.02); } |
| 133 | + 100% { transform: translate(0, 0) scale(1); } |
| 134 | + } |
| 135 | + </style> |
| 136 | +</head> |
| 137 | +<body class="transition-colors duration-300 ease-in-out"> |
| 138 | + <!-- Background patches (added as specific divs for more control) --> |
| 139 | + <div class="background-patch top-1/4 left-1/4 w-96 h-96 filter blur-[150px] opacity-70 animate-movePatch1"></div> |
| 140 | + <div class="background-patch bottom-1/3 right-1/4 w-80 h-80 filter blur-[120px] opacity-60 animate-movePatch2"></div> |
| 141 | + <div class="background-patch top-10 right-1/2 w-72 h-72 filter blur-[180px] opacity-50 animate-movePatch3"></div> |
| 142 | + <div class="background-patch bottom-10 left-1/3 w-64 h-64 filter blur-[100px] opacity-40 animate-movePatch4"></div> |
| 143 | + <div class="background-patch top-1/2 left-10 w-128 h-128 filter blur-[200px] opacity-30 animate-movePatch5"></div> |
| 144 | + <div class="background-patch bottom-20 right-10 w-112 h-112 filter blur-[170px] opacity-20 animate-movePatch1"></div> |
| 145 | + |
| 146 | + |
| 147 | + <!-- Navbar --> |
| 148 | + <nav class="navbar w-full sticky top-0 z-50 flex items-center justify-between py-4 px-6 md:px-12 rounded-b-3xl"> |
| 149 | + <div class="flex items-center"> |
| 150 | + <span class="text-2xl md:text-3xl font-bold tracking-tight text-[var(--color-primary)] font-space-grotesk">Codextream Community</span> |
| 151 | + </div> |
| 152 | + </nav> |
| 153 | + |
| 154 | + <div class="container mx-auto px-4 py-8 md:py-12 max-w-7xl"> |
| 155 | + <!-- Instructions Section --> |
| 156 | + <section class="instructions glass p-6 md:p-10 rounded-2xl text-center max-w-3xl mx-auto my-8"> |
| 157 | + <h1 class="text-4xl md:text-5xl font-extrabold mb-2 text-[var(--color-primary)] tracking-tight font-space-grotesk"> |
| 158 | + Challenge Submissions |
| 159 | + </h1> |
| 160 | + <p class="text-lg md:text-xl font-semibold mb-6 text-[var(--color-secondary)] font-space-grotesk"> |
| 161 | + <b>by Codextream Community</b> |
| 162 | + </p> |
| 163 | + <ul class="text-left max-w-xl mx-auto list-disc pl-5 text-[var(--color-text-muted)] leading-relaxed font-space-grotesk"> |
| 164 | + <li class="mb-2"><b>Fork</b> this repository</li> |
| 165 | + <li class="mb-2"><b>Add</b> your project in the correct <code class="bg-[var(--color-card-bg)] text-[var(--color-primary)] px-2 py-1 rounded">YYYY-MM-DD.json</code></li> |
| 166 | + <li class="mb-2">Include: Project Name, Your Name, Roll No., Branch, College, Live Link, and socials (optionals)</li> |
| 167 | + <li class="mb-2"><b>Open a Pull Request</b>—your project will appear below after merge!</li> |
| 168 | + </ul> |
| 169 | + </section> |
| 170 | + |
| 171 | + <!-- Search Bar --> |
| 172 | + <div class="search-wrap flex justify-center my-8 md:my-12"> |
| 173 | + <input type="text" id="search" placeholder="🔍 Search by project, name, branch, college, event..." autocomplete="off" |
| 174 | + class="w-full max-w-2xl px-6 py-4 text-lg border-2 rounded-full |
| 175 | + focus:outline-none text-[var(--color-text-light)] placeholder-[var(--color-text-muted)] |
| 176 | + shadow-lg transition-all duration-300 ease-in-out font-space-grotesk"> |
| 177 | + </div> |
| 178 | + |
| 179 | + <!-- Events Container --> |
| 180 | + <main id="events" class="grid gap-12 md:gap-16"></main> |
| 181 | + |
| 182 | + <!-- Footer --> |
| 183 | + <footer class="text-center mt-16 py-8 text-sm md:text-base text-[var(--color-text-muted)] font-space-grotesk"> |
| 184 | + <p> |
| 185 | + Made with <span class="heart text-red-500 text-xl inline-block animate-pulse">❤</span> by |
| 186 | + <a href="https://codextream.in" target="_blank" rel="noopener" class="text-[var(--color-primary)] font-semibold hover:underline">Codextream Community</a>. |
| 187 | + <br> and created by |
| 188 | + <a href="" target="_blank" class="text-[var(--color-primary)] font-semibold hover:underline">Ravixalgorithm</a>. |
| 189 | + </p> |
| 190 | + </footer> |
| 191 | + </div> |
| 192 | + |
| 193 | + <script src="./script.js"></script> |
| 194 | +</body> |
| 195 | +</html> |
0 commit comments