-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
71 lines (66 loc) · 1.63 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
59
60
61
62
63
64
65
66
67
68
69
70
71
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta
name="viewport"
content="width=device-width,initial-scale=1.0,user-scalable=no"
/>
<link
rel="stylesheet"
href="https://unpkg.com/highlight.js@9.16.2/styles/atom-one-dark.css"
/>
<script
type="text/javascript"
src="https://cdnjs.cloudflare.com/ajax/libs/highlight.js/9.15.10/highlight.min.js"
></script>
<script type="text/javascript">
if (!/localhost/.test(location.href)) {
const script = document.createElement("script");
script.type = "text/javascript";
script.src =
"https://cdnjs.cloudflare.com/ajax/libs/eruda/1.5.8/eruda.min.js";
script.onload = function() {
eruda && eruda.init();
};
}
</script>
<title>Title</title>
<style>
body {
max-width: 1200px;
margin: 20px auto;
padding: 0 10px;
}
canvas {
display: block;
}
section {
border-radius: 4px;
background-color: #fff;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
margin: 0 auto 50px;
overflow: hidden;
}
section h3 {
margin: 0;
background-color: #f7f7f7;
padding: 10px;
}
.flex-block {
display: flex;
flex-wrap: wrap;
align-items: flex-end;
padding: 15px;
}
.flex-item {
user-select: none;
overflow: hidden;
margin-right: 15px;
margin-bottom: 15px;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
</style>
</head>
<body></body>
</html>