-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex_notStyled.html
44 lines (35 loc) · 982 Bytes
/
index_notStyled.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
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no, minimum-scale=1, maximum-scale=1">
<title>px-calendar-picker Demo</title>
<script src="bower_components/webcomponentsjs/webcomponents-lite.js"></script>
<link rel="import" href="bower_components/polymer/polymer.html">
<style is="custom-style">
:root{
--paper-grey-200: firebrick;
}
.demo-layout--center {
width:80%;
margin:0 auto;
}
</style>
<link rel="import" href="bower_components/iron-doc-viewer/iron-doc-viewer.html" />
</head>
<body>
<div class="demo-layout--center">
<h1>px-calendar-picker</h1>
</div>
<div class="demo-layout--center">
<iron-doc-viewer>
{
"is": "awesome-sauce",
"properties": [
{"name": "isAwesome", "type": "boolean", "desc": "Is it awesome?"}
]
}
</iron-doc-viewer>
</div>
</body>
</html>