-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathwidget.html
More file actions
32 lines (30 loc) · 804 Bytes
/
widget.html
File metadata and controls
32 lines (30 loc) · 804 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
<!DOCTYPE html>
<html lang="ja">
<head>
<meta charset="UTF-8">
<title>JSer.info Status of Posts</title>
<script src="./lib/app.js" type="module"></script>
<!-- When display on mobile, show only #current -->
<style>
html, body, #js-main {
margin: 0;
padding: 0;
height: 100%;
}
/* Center of center */
#js-main {
width: 100%;
display: flex;
justify-content: center;
font-size: 32vmin;
}
</style>
</head>
<body class="widget">
<div id="js-main">
<img src="https://jser.info/public/img/favicon/favicon-32x32.png" width="32" height="32" loading="lazy"
style="position: fixed; left:0;top:0;">
<span id="current"></span>
</div>
</body>
</html>