-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
44 lines (44 loc) · 790 Bytes
/
index.html
File metadata and controls
44 lines (44 loc) · 790 Bytes
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
<!DOCTYPE html>
<meta charset="utf-8">
<meta http-equiv="refresh" content="3000" />
<title>Weather Screen - A forecast viewer designed for non-interactive screens.</title>
<style>
body {
margin:0;
padding:0;
}
#container {
margin:0;
padding:0;
height:100%;
overflow:hidden;
background: #9EABC8; //color of sea
}
.graticule {
fill: none;
stroke: #bbb;
stroke-width: .5px;
stroke-opacity: .5;
}
.equator {
stroke: #ccc;
stroke-width: 1px;
}
.country {
stroke: #fff;
}
path {
fill: #fff;
}
text {
font-family: "Microsoft YaHei", sans-serif;
}
</style>
<link rel="stylesheet" href="build/lib.css" media="screen">
</head>
<body>
<div id="container"></div>
<script src="build/lib.js"></script>
<script src="build/weather-screen.js"></script>
</body>
</html>