forked from opentiny/tiny-charts
-
Notifications
You must be signed in to change notification settings - Fork 0
/
playground.html
41 lines (35 loc) · 963 Bytes
/
playground.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<link rel="icon" type="image/png" href="/./image/doc/opentiny-logo.ico" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>OpenTiny HUICharts</title>
<style>
@media screen and (min-width: 1680px) {
html {
font-size: 16px !important;
}
}
@media screen and (min-width: 1280px) and (max-width: 1679px) {
html {
font-size: 14px !important;
}
}
@media screen and (max-width: 1279px) {
html {
font-size: 12px !important;
}
}
body {
font-weight: normal;
margin: 0px;
background-color: #f5f5f5;
}
</style>
</head>
<body>
<div id="app"></div>
<script type="module" src="./doc/playground.js"></script>
</body>
</html>