disable inter's on-by-default ligatures, redo icon/emote CSS

also:
* proper styling for auth page
* clean-up of html, css, js
* fix scroll indicator eating mouse events
* fix scroll indicator on (mobile?) chrome
* re-calculate timestamp width on each new message, to account for
  unknown/unexpected formats like the inclusion of AM/PM
This commit is contained in:
Ennea
2024-08-26 22:21:04 +02:00
parent abde7447be
commit 769d34befd
5 changed files with 166 additions and 98 deletions
+15 -12
View File
@@ -3,17 +3,20 @@
<head>
<title>Authentication</title>
<link rel="stylesheet" href="/static/start.css">
</head>
<body>
<div style="text-align: center;">
<h3 style="color: #fff">Authcode</h3>
<form action="/auth" method="POST">
<input style="color: #fff; background: #121212" type="password" id="authcode" name="authcode">
<input style="color: #fff; background: #121212" type="submit" value="Submit">
</form>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<img src="/emote/Sure">
</div>
<link rel="stylesheet" href="static/start.css">
</head>
<body>
<main class="auth">
<h1>Authcode</h1>
<form action="/auth" method="POST">
<input type="password" name="authcode">
<button type="submit">Submit</button>
</form>
<img src="/emote/Sure">
</main>
</body>
</html>
</html>
Binary file not shown.