-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
62 lines (49 loc) · 1.21 KB
/
Copy pathindex.html
File metadata and controls
62 lines (49 loc) · 1.21 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
<!doctype html>
<html>
<head>
<title> funSketch </title>
<meta charset='utf-8'>
<link href="https://fonts.googleapis.com/css?family=Merriweather+Sans" rel="stylesheet">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css" integrity="sha384-BVYiiSIFeK1dGmJRAkycuHAHRg32OmUcww7on3RYdg4Va+PmSTsz/K68vbdEjh4u" crossorigin="anonymous">
</head>
<style>
body, button{
font-family: 'Merriweather Sans', sans-serif;
}
button{
margin: 3px;
font-size: 13px;
}
ul{
padding: 0;
}
li{
list-style-type: none;
padding: 2px;
}
a{
text-decoration: none;
}
select{
max-width: 100%;
}
.option:hover{
color: #99b5d1;
cursor: pointer;
}
#footer{
margin-left: 20px;
grid-row: 2;
grid-column: 2; /* place in middle column */
width: 100%;
text-align: center;
}
</style>
<body>
<div id='root'>
</div>
</body>
<script type="text/javascript" src="gif.worker.js"></script>
<script type="text/javascript" src="src/gif-js/gif.js"></script>
<script type="text/javascript" src="dist/bundle.js"></script>
</html>