-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
165 lines (139 loc) · 3.29 KB
/
index.html
File metadata and controls
165 lines (139 loc) · 3.29 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
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="icon" type="image/svg+xml" href="/favicon.svg" />
<title>RepoMap</title>
<script src="https://cdn.tailwindcss.com"></script>
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link
href="https://fonts.googleapis.com/css2?family=JetBrains+Mono:wght@300;400;500;600;700&family=Patrick+Hand&display=swap"
rel="stylesheet">
<style>
body {
margin: 0;
overflow: hidden;
background-color: #ffffff;
color: #1f2328;
font-family: 'JetBrains Mono', monospace;
}
/* Custom scrollbar */
::-webkit-scrollbar {
width: 8px;
height: 8px;
}
::-webkit-scrollbar-track {
background: transparent;
}
::-webkit-scrollbar-thumb {
background: #d0d7de;
border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
background: #afb8c1;
}
/* Markdown Styles */
.prose {
font-size: 14px;
line-height: 1.5;
color: #1f2328;
}
.prose p {
margin-bottom: 0.75em;
}
.prose strong {
font-weight: 600;
color: #1f2328;
}
.prose ul {
list-style-type: disc;
padding-left: 1.5em;
margin-bottom: 0.75em;
}
.prose ol {
list-style-type: decimal;
padding-left: 1.5em;
margin-bottom: 0.75em;
}
.prose code {
background: #eff1f3;
padding: 0.2em 0.4em;
border-radius: 4px;
font-family: ui-monospace, SFMono-Regular, SF Mono, Menlo, Consolas, Liberation Mono, monospace;
font-size: 85%;
color: #1f2328;
}
.prose pre {
background: #f6f8fa;
padding: 12px;
border-radius: 6px;
overflow-x: auto;
margin-top: 0.5em;
margin-bottom: 0.5em;
border: 1px solid #d0d7de;
}
.prose pre code {
background: transparent;
padding: 0;
color: #1f2328;
}
.prose a {
color: #0969da;
text-decoration: none;
}
.prose a:hover {
text-decoration: underline;
}
/* Dark Mode Markdown Styles */
.prose-invert {
color: #c9d1d9;
}
.prose-invert strong {
color: #c9d1d9;
}
.prose-invert code {
background: #21262d;
color: #c9d1d9;
}
.prose-invert pre {
background: #161b22;
border-color: #30363d;
}
.prose-invert pre code {
color: #c9d1d9;
}
.prose-invert a {
color: #58a6ff;
}
@keyframes fadeIn {
from {
opacity: 0;
}
to {
opacity: 1;
}
}
.animate-fade-in {
animation: fadeIn 1s ease-in-out;
}
</style>
</head>
<body>
<div id="root"></div>
<!-- Global SVG Filters -->
<svg style="position: absolute; width: 0; height: 0; pointer-events: none;">
<defs>
<filter id="glow" x="-50%" y="-50%" width="200%" height="200%">
<feGaussianBlur stdDeviation="2" result="coloredBlur" />
<feMerge>
<feMergeNode in="coloredBlur" />
<feMergeNode in="SourceGraphic" />
</feMerge>
</filter>
</defs>
</svg>
<script type="module" src="/index.tsx"></script>
</body>
</html>