UNPKG

1.13 kBHTMLView Raw
1<!DOCTYPE html>
2<html>
3 <head>
4 <title>Compote</title>
5
6 <meta content="text/html; charset=utf-8" http-equiv="content-type">
7 <meta content="width=device-width, initial-scale=1, maximum-scale=1" name="viewport">
8 <meta content="True" name="HandheldFriendly">
9 <meta content="320" name="MobileOptimized">
10 <meta content="on" http-equiv="cleartype">
11
12 <base href="/">
13
14 <style>
15 body {
16 background: #242424;
17 color: #d9d9d9;
18 font-family: 'Open Sans', 'Arial', sans-serif;
19 }
20
21 .pointer {
22 cursor: pointer;
23 user-select: none;
24 }
25
26 .fade-in-animation {
27 animation: fade-in 0.4s;
28 }
29
30 @keyframes fade-in {
31 from { opacity:0; }
32 to { opacity:1; }
33 }
34
35 .fade-out-animation {
36 animation: fade-out 0.4s;
37 }
38
39 @keyframes fade-out {
40 from { opacity:1; }
41 to { opacity:0; }
42 }
43 </style>
44 </head>
45
46 <body>
47 <div id="container">Loading...</div>
48
49 <script src="node_modules/mithril/mithril.js"></script>
50 <script src="build/todomvc.js"></script>
51 </body>
52</html>