-
Notifications
You must be signed in to change notification settings - Fork 189
/
demo.html
93 lines (82 loc) · 1.55 KB
/
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
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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta content="telephone=no" name="format-detection" />
<meta name="viewport"
content="width=device-width,initial-scale=1.0,viewport-fit=cover,maximum-scale=1.0,user-scalable=0" />
<title>Quark Design - 下一代前端组件库</title>
<style>
body::-webkit-scrollbar {
display: none;
}
/* Reset general styles */
body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
ul,
ol,
li,
pre,
code,
blockquote,
figure,
hr {
margin: 0;
padding: 0;
}
/* Reset font styles */
body,
button,
input,
optgroup,
select,
textarea {
font-family: inherit;
font-size: inherit;
font-weight: inherit;
line-height: inherit;
}
/* Reset list styles */
ul,
ol {
list-style: none;
}
/* Reset form styles */
button,
input,
select,
textarea {
appearance: none;
border: none;
outline: none;
background: none;
}
/* Reset link styles */
a {
text-decoration: none;
color: inherit;
}
/* Additional resets for specific elements */
img {
display: block;
max-width: 100%;
height: auto;
}
table {
border-collapse: collapse;
border-spacing: 0;
}
</style>
</head>
<body>
<div id="app"></div>
<script type="module" src="./example/src/sites/mobile-vue/main.ts"></script>
<script type="module" src="./packages/quarkd/src/index.ts"></script>
</body>
</html>