blowater/app/UI/assets/index-extension.html
BlowaterNostr e86101ae7f
5.0.0: Redesign & Rearchitecture (#380)
* remove nip-07 extension sign-in temporarily
* bring kind-1 back!
* separated relay views
2024-03-15 21:44:17 +08:00

69 lines
1.9 KiB
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1">
<meta
name="description"
content="Blowater is a delightful Nostr client that focuses on DM" />
<meta
property="og:image"
content="https://blowater.deno.dev/logo.webp" />
<meta
property="og:description"
content="Blowater is a delightful Nostr client that focuses on DM" />
<meta property="og:title" content="Blowater" />
<meta name="twitter:title" content="Blowater" />
<meta
property="twitter:description"
content="Blowater is a delightful Nostr client that focuses on DM" />
<meta
property="twitter:image"
content="https://blowater.deno.dev/logo.webp" />
<title>Blowater</title>
<script type="module" src="/main.mjs"></script>
<link rel="shortcut icon" href="logo.webp" type="image/x-icon">
<link rel="manifest" href="/manifest.json">
<style>
html {
font-size: 1.618em;
}
@media screen and (max-width: 1920px) {
html {
font-size: calc(1.618em * (1920 / 2560));
}
}
@media screen and (max-width: 1024px) {
html {
font-size: 1.2em;
}
}
@media screen and (max-width: 500px) {
html {
font-size: 1em;
}
}
input,
textarea,
li,
button,
select,
a {
-webkit-tap-highlight-color: transparent;
}
body {
height: 600px;
width: 320px;
overflow: hidden;
}
</style>
</head>
<body></body>
</html>