You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
50 lines
1022 B
50 lines
1022 B
<!doctype html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<title>Mastodon embed timeline</title>
|
|
<meta name="author" content="i.j">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<meta name="keywords" content="mastodon, embed timeline" />
|
|
<meta name="description" content="Mastodon embed timeline" />
|
|
<link rel="stylesheet" href="mastodon-timeline.css">
|
|
<style>
|
|
*{
|
|
margin:0;
|
|
padding:0;
|
|
}
|
|
html{
|
|
height:100%
|
|
}
|
|
body{
|
|
height:100%;
|
|
background: lightslategray;
|
|
font-size:16px;
|
|
font-family: Arial, Helvetica;
|
|
margin:0;
|
|
padding:0;
|
|
}
|
|
.dummy-container {
|
|
height:calc(100% - 4rem);
|
|
margin: 0 auto;
|
|
max-width: 30rem;
|
|
padding: 2rem;
|
|
}
|
|
</style>
|
|
</head>
|
|
|
|
<body>
|
|
<div class="dummy-container">
|
|
<div id="mt-timeline" class="mt-timeline">
|
|
<div id="mt-body" class="mt-body">
|
|
<div class="loading-spinner"></div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
<script src='mastodon-timeline.js'>
|
|
</script>
|
|
|
|
</body>
|
|
|
|
</html>
|