share-to-mastodon/share.html

49 lines
1.5 KiB
HTML
Raw Normal View History

2023-02-10 07:30:26 +01:00
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>Share to Mastodon</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link href="css/bootstrap.css" rel="stylesheet">
<link href="css/dark.css" rel="stylesheet" media="(prefers-color-scheme: dark)">
<style>
.list-group-item img {
2023-02-12 07:39:23 +01:00
width: 1em;
2023-02-10 07:30:26 +01:00
height: auto;
margin-right: 5px;
}
</style>
</head>
<body>
2023-02-12 07:39:23 +01:00
<div class="list-group mb-2 list-group-flush border-bottom">
<li class="list-group-item list-group-item-dark">
Select a server
<div class="float-end">
<a href="#" target="_blank">
Add or remove servers
</a>
</div>
</li>
<a href="#" class="list-group-item list-group-item-action display-6">
<img src="https://toot.community/favicon.ico">
toot.community
</a>
<a href="#" class="list-group-item list-group-item-action display-6">
<img src="https://toot.cafe/favicon.ico">
toot.cafe
</a>
<a href="#" class="list-group-item list-group-item-action display-6">
<img src="https://mastodon.social/favicon.ico">
mastodon.social
2023-02-10 07:30:26 +01:00
</a>
</div>
<script src="js/bootstrap.js"></script>
<script src="js/settings.js"></script>
</body>
</html>