-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
81 lines (70 loc) · 1.86 KB
/
Copy pathindex.html
File metadata and controls
81 lines (70 loc) · 1.86 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
<!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/png" sizes="24x24" href="/icon.png">
<link rel="shortcut icon" sizes="24x24" href="/icon.png" />
<title>EatbotCopmponents Guide</title>
<style>
:root {
font-family: Helvetica, Arial, sans-serif;
font-synthesis: none;
text-rendering: optimizeLegibility;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
-webkit-text-size-adjust: 100%;
}
html, body { margin: 0; max-width: 100%; background: #222; color: #e0e0e0; }
body { min-width: 320px; min-height: 100vh; }
h3 {
color: #4f84ea;
}
a, a:link, a:visited {
color: #50a7ea;
text-decoration: none;
-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
a:hover {
color: #5a6edc;
-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
a:active {
color: #6ea0e6;
-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
pre {
overflow-x: scroll;
background: #000;
padding: 10px;
}
#main-node {
margin: 0 auto;
overflow-x: hidden;
min-height: 100vh; /* remove this to make pages not full-height */
max-width: 800px;
}
.component-row {
margin-bottom: 50px;
}
.components-divider {
font-size: 150%;
margin: 50px auto;
text-align: center;
}
.component-tips-label {
font-weight: bold;
font-size: 85%;
margin-top: 50px;
margin-bottom: 20px;
}
@media (max-width: 699px) {
body { padding: 30px; }
}
</style>
</head>
<body>
<div id="main-node"></div>
<script type="module" src="/guide.tsx"></script>
</body>
</html>