-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtest_md.html
43 lines (39 loc) · 1.2 KB
/
test_md.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
<!DOCTYPE html>
<html lang="en">
<head>
<link href="https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;700&display=swap" rel="stylesheet"></link>
<script type="importmap"> {
"imports": {
"@material/web/": "https://esm.run/@material/web/"
}
}
</script><script type="module">
import '@material/web/all.js';
import {styles as typescaleStyles} from '@material/web/typography/md-typescale-styles.js';
document.adoptedStyleSheets.push(typescaleStyles.styleSheet);</script>
<style>
:not(:defined) {
visibility: hidden;
}
:root {
--md-filled-tonal-button-container-shape: 8px;
--md-dialog-container-shape: 8px;
}
</style>
</head>
<body>
<md-outlined-button>Back</md-outlined-button>
<md-filled-button>Complete</md-filled-button>
<!-- Note the position: relative style -->
<span id="x"></span>
<md-menu-item>
<div slot="headline">Apple</div>
</md-menu-item>
<md-menu-item>
<div slot="headline">Banana</div>
</md-menu-item>
<md-menu-item>
<div slot="headline">Cucumber</div>
</md-menu-item>
</body>
</html>