-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathplayground.html
37 lines (37 loc) · 1.03 KB
/
playground.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
<!DOCTYPE html>
<html lang=en>
<head>
<meta charset=utf-8 />
<meta content='IE=edge,chrome=1' http-equiv=X-UA-Compatible />
<meta content='width=device-width, initial-scale=1.0, minimum-scale=1.0, maximum-scale=1.0, user-scalable=no' name=viewport />
<meta content=! name=fragment />
<title>pacpan playground</title>
<style>
html, body, #root {
height: 100%;
margin: 0;
}
a,button,div,img,input,form,h1,h2,h3,h4,h5,h6,h7,nav,label,li,ol,p,span,svg,ul {
box-sizing:border-box;
position:relative;
display:-webkit-flex;
display:flex;
-webkit-flex-direction:column;
flex-direction:column;
-webkit-align-items:stretch;
align-items:stretch;
-webkit-flex-shrink:0;
flex-shrink:0;
margin:0;
padding:0;
outline:0;
-webkit-overflow-scrolling:touch;
}
</style>
</head>
<body>
<div id=root></div>
<script src=https://cdnjs.cloudflare.com/ajax/libs/fetch/0.11.0/fetch.min.js></script>
<script src=/panels.js></script>
</body>
</html>