-
Notifications
You must be signed in to change notification settings - Fork 0
/
trailer.html
executable file
·114 lines (98 loc) · 3.33 KB
/
trailer.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
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width,initial-scale=1">
<meta name="binjr, a time series browser">
<link rel="shortcut icon" href="/assets/images/favicon.png">
<meta property="og:site_name" content="binjr" />
<meta property="og:url" content="https://binjr.eu" />
<meta property="og:title" content="binjr - A Time Series Browser" />
<meta property="og:description" content="binjr is a standalone time series browser.
it renders time series data produced by other applications as dynamically editable
charts and provides advanced features to navigate the data smoothly and efficiently." />
<meta property="og:image" content="https://binjr.eu/assets/images/binjr_card.png" />
<meta property="og:type" content="video" />
<meta property="og:video" content="https://binjr.eu/assets/videos/binjr_demo.mp4" />
<meta property="og:video:secure_url" content="https://binjr.eu/assets/videos/binjr_demo.mp4" />
<meta property="og:video:type" content="video/mp4" />
<meta property="og:video:width" content="1496" />
<meta property="og:video:height" content="968" />
<style>
body{
margin: 0;
}
footer {
margin: 0;
}
.centered {
display: flex;
justify-content: center;
align-items: center;
min-height: calc(100vh - 50px);
}
.banner {
display: flex;
flex-direction: row;
justify-content: space-between;
font-family: -apple-system,BlinkMacSystemFont,Segoe UI,Helvetica,Arial,sans-serif,Apple Color Emoji,Segoe UI Emoji;
align-items: center;
margin: 10;
width: 100%;
height: 50px;
background-color: #202020;
color: white;
}
a {
padding: 10;
color: white;
}
.container{
margin: 0;
min-height: calc(100vh - 50px);
}
video {
max-width: 1000px;
width: 100%;
height: auto;
box-shadow: 0 0 .2rem rgba(0, 0, 0, .5), 0 .2rem .4rem rgba(0, 0, 0, .8);
}
.button {
background-color: transparent;
border: none;
color: white;
padding: 0 20px;
text-align: center;
font-size: 14px;
font-weight: 600;
text-decoration: none;
}
.button:hover {
color: #808080;
}
</style>
</head>
<body>
<header>
<div class="banner">
<a class="button" href="https://github.com/binjr/binjr">
Back to GitHub
</a>
<a class="button" href="https://binjr.eu">
<img width="auto" height="32" src="/assets/images/binjr_128.png">
</a>
</div>
</header>
<div class="container">
<div class="centered">
<video autoplay
controls
muted
poster="/assets/images/binjr_landing_poster.png"
src="/assets/videos/binjr_demo.mp4" type="video/mp4">
Your browser does not support the video tag.
</video>
</div>
</div>
</body>
</html>