forked from Scarygami/polymer-fireworks
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdemo.html
41 lines (34 loc) · 942 Bytes
/
demo.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
<!DOCTYPE html>
<html>
<head>
<meta name="viewport" content="width=device-width, minimum-scale=1.0, initial-scale=1.0, user-scalable=yes">
<title>polymer-fireworks Demo</title>
<script src="../webcomponentsjs/webcomponents.min.js"></script>
<link rel="import" href="../font-roboto/roboto.html">
<link rel="import" href="polymer-fireworks.html">
<style>
html, body {
width: 100%;
height: 100%;
overflow: hidden;
}
body {
background-color: black;
margin: 0;
padding: 0;
color: white;
font-size: 5em;
font-weight: bold;
font-family: RobotoDraft, 'Helvetica Neue', Helvetica, Arial;
}
polymer-fireworks {
width: 100%;
height: 100%;
margin: 0;
}
</style>
</head>
<body unresolved>
<polymer-fireworks message="Happy 2015!!"></polymer-fireworks>
</body>
</html>