forked from alemi/upub
alemi
f8b135d242
a lot of work on uris, fetching, concurrency and caching. now timelines persist and should behave appropriately with your logins! there are still some weird edge cases but all around i think it's pretty solid and also quite nice!!
64 lines
1.4 KiB
HTML
64 lines
1.4 KiB
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<title>upub</title>
|
|
<meta charset="utf-8">
|
|
<meta http-equiv="content-type" content="text/html; charset=utf-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
|
|
<meta property="og:type" content="website" />
|
|
<meta property="og:title" content="upub">
|
|
<meta property="og:description" content="micro social network, federated" />
|
|
<meta property="og:url" content="https://feditest.alemi.dev/web" />
|
|
<meta property="og:site_name" content="upub" />
|
|
|
|
<link crossorigin rel="stylesheet" href="https://cdn.alemi.dev/web/alemi.css">
|
|
<style>
|
|
:root {
|
|
--main-col-percentage: 70%;
|
|
}
|
|
.hidden { display: none; }
|
|
a.upub-title {
|
|
color: var(--primary);
|
|
text-decoration: none;
|
|
}
|
|
a.upub-title:hover {
|
|
text-decoration: underline;
|
|
}
|
|
img.avatar-circle {
|
|
display: inline;
|
|
max-height: 2em;
|
|
border-radius: 50%;
|
|
}
|
|
div.boxscroll {
|
|
max-height: calc(100vh - 7rem);
|
|
overflow-y: scroll;
|
|
}
|
|
div.tl-header {
|
|
background-color: #bf616a55;
|
|
color: #bf616a;
|
|
}
|
|
@media screen and (max-width: 786px) {
|
|
div.boxscroll {
|
|
max-height: 100%;
|
|
}
|
|
}
|
|
table.align {
|
|
line-height: 1rem;
|
|
}
|
|
td.top {
|
|
vertical-align: top;
|
|
}
|
|
input[type="submit"].active {
|
|
background-color: var(--accent);
|
|
border-color: var(--accent);
|
|
color: var(--background);
|
|
cursor: pointer;
|
|
}
|
|
</style>
|
|
</head>
|
|
|
|
</head>
|
|
<body>
|
|
</body>
|
|
</html>
|