-
Notifications
You must be signed in to change notification settings - Fork 27
/
Copy pathindex.html
58 lines (54 loc) · 2.37 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>FOSSCU Getting Started With Git</title>
<link rel="stylesheet" href="index.css">
<script src="https://cdn.tailwindcss.com"></script>
<script src="index.js" defer></script>
<style>
.loader {
border: 8px solid #f3f3f3; /* Light grey */
border-top: 8px solid #00e80f;
border-radius: 50%;
width: 60px;
height: 60px;
animation: spin 1s linear infinite;
z-index: 1001; /* Ensure loader is above the blur */
}
@keyframes spin {
0% { transform: rotate(0deg); }
100% { transform: rotate(360deg); }
}
</style>
</head>
<body>
<div id="loader" style="display: none; position: fixed; top: 0; left: 0; width: 100%; height: 100%; background-color: rgba(0,0,0,0.5); justify-content: center; align-items: center; z-index: 1000; backdrop-filter: blur(2px);">
<div class="loader"></div> <!-- Loader animation -->
</div>
<nav class="flex bg-bg-black p-4 px-12 items-center justify-between">
<div class="flex gap-3">
<img src="https://fosscu.org/fosscu.png" alt="logo" width="36" height="36" />
<div class="text-white font-semibold text-3xl">FOSSCU</div>
</div>
<button class='px-7 py-2 bg-custom-green-gradient font-medium rounded-full text-white hover:opacity-50 lg:flex items-center' onclick="window.location.href=`https://fosscu.org/`">
Explore
</button>
</nav>
<div class="flex flex-col gap-8 py-12">
<h2 class="text-[#0DFF1C] text-gradient text-7xl my-3 mb-8 text-center font-black">
Getting Started With Git
</h2>
<div class="flex justify-around items-center gap-4 p-8 text-white flex-wrap" id="steeringCouncil">
<!-- Member cards will be dynamically inserted here by index.js -->
</div>
</div>
<footer class="p-6 py-8 flex justify-center items-center bg-[#141718]">
<div class="flex-col md:flex text-center gap-6 md:gap-2 justify-center items-center">
<p class="text-[#0DFF1C] font-bold py-2 md:py-0 text-2xl">FOSSCU</p>
<p class="text-[#D1D5DB]">Made with 💚 and Open Source</p>
</div>
</footer>
</body>
</html>