-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
48 lines (46 loc) · 1.13 KB
/
index.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
45
46
47
48
<!DOCTYPE html>
<html lang="en">
<head>
<base href="/" />
<meta charset="utf-8" />
<meta
name="viewport"
content="width=device-width, initial-scale=1.0, viewport-fit=cover"
/>
<meta name="Description" content="Demonstration for nasa-search" />
<style>
:root,
html,
body {
margin: 0;
padding: 0;
}
#demo {
margin: var(--ddd-spacing-2);
}
nasa-search {
margin: var(--ddd-spacing-2);
border: var(--ddd-border-md);
border-radius: var(--ddd-radius-lg);
}
nasa-search:hover {
box-shadow: var(--ddd-boxShadow-sm);
}
#example {
--nasa-search-font-size: var(--ddd-font-size-l);
background-color: var(--ddd-accent-2);
color: var(--ddd-primary-17);
}
</style>
<title>nasa-search</title>
</head>
<body>
<div id="demo">
<h1>nasa-search</h1>
<!-- this is going to do whatever the tag's defaults are -->
<h2>Default</h2>
<nasa-search></nasa-search>
</div>
<script type="module" src="./src/nasa-search.js"></script>
</body>
</html>