-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
46 lines (46 loc) · 1.29 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width">
<title>Telegazeta Browser</title>
<link rel="shortcut icon" href="favicon.ico">
<style>
@font-face {
font-family: "European Teletext";
src: url("font/european-teletext.woff2") format("woff2"), url("font/european-teletext.woff") format("woff"), url("font/european-teletext.ttf") format("truetype");
}
body {
margin: 0;
padding: 0;
font: 14px "European Teletext", sans-serif;
color: #fff;
background: #000;
text-align: center;
}
button {
font-family: inherit;
border: 1px solid;
padding: 5px 10px;
}
img {
vertical-align: top;
}
a {
color: inherit;
text-decoration: none;
}
#footer {
position: absolute;
bottom: 0;
left: 0;
right: 0;
}
</style>
</head>
<body>
<h1>Telegazeta Browser</h1>
<p><button onclick="window.open('popup.html', '_blank', 'innerWidth=480,innerHeight=380,menubar=no,toolbar=no,location=no,resizable=no,scrollbars=no,status=no,dialog=yes');" title="Przeglądaj Telegazetę w oknie pop-up"><img src="favicon.ico" alt=""> Przeglądaj Telegazetę</button></p>
<p id="footer">made by <a href="https://niute.ch" target="_blank">niu tech</a> | <a href="https://github.com/niutech/telegazeta-browser" target="_blank">github</a></p>
</body>
</html>