-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathgit-tracker.html.bak-server-note
More file actions
119 lines (119 loc) · 3.96 KB
/
Copy pathgit-tracker.html.bak-server-note
File metadata and controls
119 lines (119 loc) · 3.96 KB
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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>AcreetionOS Git Tracker</title>
<link rel="stylesheet" href="git-tracker.css">
<link rel="preconnect" href="https://fonts.googleapis.com" crossorigin>
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Fira+Code&family=Roboto:wght@400;500;700&display=swap" rel="stylesheet">
<style>
body {
font-family: 'Roboto', 'Fira Code', monospace, sans-serif;
background: linear-gradient(135deg, #232526 0%, #2ecc71 100%);
color: #e5e5e5;
margin: 0;
min-height: 100vh;
overflow-x: hidden;
}
.tracker-hero {
text-align: center;
padding: 4rem 1rem;
position: relative;
overflow: hidden;
z-index: 1;
}
.tracker-hero .glow {
position: absolute;
top: 50%;
left: 50%;
width: 300%;
height: 300%;
background: rgba(46, 204, 113, 0.2);
border-radius: 50%;
transform: translate(-50%, -50%) scale(0);
animation: glow-animation 6s infinite;
z-index: -1;
}
@keyframes glow-animation {
0% { transform: translate(-50%, -50%) scale(0); }
50% { transform: translate(-50%, -50%) scale(1); }
100% { transform: translate(-50%, -50%) scale(0); }
}
.tracker-title {
font-size: 3.5rem;
font-family: 'Fira Code', monospace;
color: #2ecc71;
margin: 0;
text-shadow: 0 2px 8px #222;
}
.tracker-subtitle {
font-size: 1.5rem;
color: #b2b2b2;
margin: 1rem 0;
}
#repo-search {
width: 100%;
max-width: 600px;
padding: 1rem;
font-size: 1.2rem;
border: none;
border-radius: 30px;
outline: none;
margin: 1rem 0;
box-shadow: 0 4px 24px rgba(46,204,113,0.2);
}
#repo-list {
max-width: 1200px;
margin: 2rem auto;
display: grid;
grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
gap: 1.5rem;
}
.repo-card {
background: rgba(34,34,34,0.95);
border-radius: 16px;
padding: 1.5rem;
box-shadow: 0 8px 32px rgba(46,204,113,0.15);
transition: transform 0.2s;
}
.repo-card:hover {
transform: translateY(-5px);
}
.repo-card h3 {
font-size: 1.5rem;
margin: 0 0 0.5rem 0;
color: #2ecc71;
}
.repo-card p {
font-size: 1rem;
color: #b2b2b2;
margin: 0;
}
.loading-status {
font-style: italic;
color: #f39c12;
text-align: center;
margin: 2rem 0;
}
@media (max-width: 900px) {
.tracker-title { font-size: 2.5rem; }
.tracker-subtitle { font-size: 1.2rem; }
#repo-search { font-size: 1rem; }
}
</style>
</head>
<body>
<div class="tracker-hero">
<div class="glow"></div>
<h1 class="tracker-title">AcreetionOS Git Tracker</h1>
<p class="tracker-subtitle">Explore every project, every contributor, every commit.<br>Welcome to the heart of AcreetionOS-Linux!</p>
<input type="text" id="repo-search" placeholder="Search repositories..." autocomplete="off">
</div>
<div id="repo-list" class="repo-list"></div>
<div id="loading-status" class="loading-status">Loading organization data...</div>
<div id="modal" class="modal" style="display:none;"></div>
<script src="git-tracker.js"></script>
</body>
</html>