This repository has been archived by the owner on Oct 19, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
70 lines (63 loc) · 2.12 KB
/
index.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
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width,initial-scale=1">
<meta http-equiv="X-UA-Compatible" content="chrome=1">
<meta name="description" content="Clock face UI for FlutterClock contest"/>
<meta name="keywords" content="flutter, clock, flutterclock, matrix, bit"/>
<meta name="author" content="igor.petushkov@kroppli.com">
<title>BitrainClock</title>
<link rel="shortcut icon" type="image/x-icon" href="./bitrainclock-icon.png">
<style>
@font-face {
font-family: "JetBrainsMonoRegular";
src: url("./assets/JetBrainsMono-Regular.ttf");
}
body {
background-color:#161616;
font-family: 'JetBrainsMonoRegular', Arial, sans-serif;
}
a {
color: transparent;
}
#main {
position: absolute;
left: 20%;
top: 30%;
}
#logo {
color: white;
opacity: 0.95;
font-size: 60px;
}
</style>
</head>
<body>
<div id="main">
<table>
<tr>
<td>
<div id="logo">
bitrain<br />
clock <br />
<br />
<br />
</div>
<a style="color: white;opacity: 0.7;" target="_blank" href="https://github.com/kroppli/bitrainclock">GitHub</a>
<a style="color: white;opacity: 0.7;" target="_blank" href="https://play.google.com/store/apps/details?id=com.kroppli.bitrainclock">Google Play</a>
<br /><br />
<a style="color: white;opacity: 0.7;" target="_blank" href="./privacy_policy.html">Privacy Policy</a>
<br />
</td>
<td>
<video width="600" controls poster="./assets/screen.png" style="outline: none;margin-left: 170px;">
<source src="https://raw.githubusercontent.com/kroppli/bitrainclock/master/_market/3PAzwsYYcO0vr4aB.mp4" type="video/mp4">
Your browser does not support HTML5 video.
</video>
</td>
</tr>
</table>
</div>
</body>
</html>