-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
69 lines (57 loc) · 1.49 KB
/
index.html
File metadata and controls
69 lines (57 loc) · 1.49 KB
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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0, viewport-fit=cover" />
<meta name="Description" content="Put your description here.">
<base href="/">
<title>PWABuilder - Preview component</title>
<script type="module" src="./manifest-previewer.js"></script>
<style type="text/css" media="screen, print">
@font-face {
font-family: 'Hind';
src: url('/assets/fonts/Hind-Regular.ttf');
font-weight: 400;
font-style: normal;
font-display: swap;
}
@font-face {
font-family: 'Hind';
src: url('/assets/fonts/Hind-Bold.ttf');
font-weight: 700;
font-style: bold;
font-display: swap;
}
@font-face {
font-family: 'Segoe';
src: url('/assets/fonts/SegoeUI.ttf');
font-weight: 400;
font-style: normal;
font-display: swap;
}
@font-face {
font-family: 'SF-Pro';
src: url('/assets/fonts/SFProDisplay-Light.ttf');
font-weight: 400;
font-style: normal;
}
@font-face {
font-family: 'Roboto';
src: url('/assets/fonts/Roboto-Regular.ttf');
font-weight: 400;
font-style: normal;
}
manifest-previewer {
--font-family: Hind;
--windows-font-family: Segoe;
--ios-font-family: SF-Pro;
}
manifest-previewer::part(card) {
margin: 0 auto;
}
</style>
</head>
<body>
<manifest-previewer></manifest-previewer>
</body>
</html>