-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
53 lines (53 loc) · 1.88 KB
/
index.html
File metadata and controls
53 lines (53 loc) · 1.88 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no">
<title>Mashing Master</title>
<script src="https://cdn.tailwindcss.com"></script>
<style>
body {
background-color: #f0f2f5; /* Ant Design Light Gray */
color: #303133; /* Element UI Main Text */
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, 'Noto Sans', sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol', 'Noto Color Emoji';
overflow-x: hidden;
}
/* Custom scrollbar */
::-webkit-scrollbar {
width: 8px;
height: 8px;
}
::-webkit-scrollbar-track {
background: #e4e7ed;
}
::-webkit-scrollbar-thumb {
background: #909399;
border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
background: #606266;
}
</style>
<script type="importmap">
{
"imports": {
"rxjs": "https://esm.sh/rxjs@^7.8.2?conditions=es2015",
"rxjs/operators": "https://esm.sh/rxjs@^7.8.2/operators?conditions=es2015",
"rxjs/ajax": "https://esm.sh/rxjs@^7.8.2/ajax?conditions=es2015",
"rxjs/webSocket": "https://esm.sh/rxjs@^7.8.2/webSocket?conditions=es2015",
"rxjs/testing": "https://esm.sh/rxjs@^7.8.2/testing?conditions=es2015",
"rxjs/fetch": "https://esm.sh/rxjs@^7.8.2/fetch?conditions=es2015",
"@angular/common": "https://esm.sh/@angular/common@^21.1.2?external=rxjs",
"@angular/core": "https://esm.sh/@angular/core@^21.1.2?external=rxjs",
"d3": "https://esm.sh/d3@^7.9.0?external=rxjs",
"@angular/platform-browser": "https://esm.sh/@angular/platform-browser@^21.1.2?external=rxjs",
"@angular/compiler": "https://esm.sh/@angular/compiler@^21.1.2?external=rxjs"
}
}
</script>
<link rel="stylesheet">
</head>
<body>
<app-root></app-root>
</body>
</html>