2024-04-14 06:45:51 +02:00
|
|
|
<!DOCTYPE html>
|
|
|
|
<html>
|
|
|
|
<head>
|
|
|
|
<title>upub</title>
|
2024-04-14 17:14:00 +02:00
|
|
|
<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" />
|
|
|
|
|
2024-04-17 15:29:25 +02:00
|
|
|
<link rel="preload" href="https://cdn.alemi.dev/web/font/FiraCode-Regular.woff2" as="font" type="font/woff2" crossorigin="anonymous">
|
|
|
|
<link rel="preload" href="https://cdn.alemi.dev/web/font/FiraCode-Bold.woff2" as="font" type="font/woff2" crossorigin="anonymous">
|
|
|
|
|
2024-04-14 06:45:51 +02:00
|
|
|
<link crossorigin rel="stylesheet" href="https://cdn.alemi.dev/web/alemi.css">
|
|
|
|
<style>
|
2024-04-15 17:54:39 +02:00
|
|
|
:root {
|
|
|
|
--main-col-percentage: 70%;
|
|
|
|
}
|
2024-04-17 15:29:25 +02:00
|
|
|
@font-face {
|
|
|
|
font-family: 'Fira Code';
|
|
|
|
font-style: normal;
|
|
|
|
font-weight: 400;
|
|
|
|
font-display: swap;
|
|
|
|
src: url("assets/fonts/FiraCode-Regular.woff2") format("woff2"), url("assets/fonts/FiraCode-Regular.woff") format("woff");
|
|
|
|
}
|
|
|
|
|
|
|
|
@font-face {
|
|
|
|
font-family: 'Fira Code';
|
|
|
|
font-style: normal;
|
|
|
|
font-weight: 800;
|
|
|
|
font-display: swap;
|
|
|
|
src: url("assets/fonts/FiraCode-Bold.woff2") format("woff2"), url("assets/fonts/FiraCode-Bold.woff") format("woff");
|
|
|
|
}
|
|
|
|
|
|
|
|
* {
|
|
|
|
font-family: 'Fira Code', Menlo, DejaVu Sans Mono, Monaco, Consolas, Ubuntu Mono, monospace;
|
|
|
|
}
|
|
|
|
|
2024-04-17 04:33:34 +02:00
|
|
|
body {
|
|
|
|
margin: 0;
|
2024-04-17 05:39:45 +02:00
|
|
|
padding-bottom: 1.2em;
|
2024-04-17 15:29:25 +02:00
|
|
|
font-size: 11pt;
|
2024-04-17 04:33:34 +02:00
|
|
|
}
|
|
|
|
nav {
|
|
|
|
top: 0;
|
|
|
|
position: sticky;
|
|
|
|
padding-top: .05em;
|
2024-04-17 05:39:45 +02:00
|
|
|
background-color: var(--background);
|
|
|
|
}
|
|
|
|
footer {
|
|
|
|
width: 100%;
|
|
|
|
position: fixed;
|
|
|
|
bottom: 0;
|
|
|
|
background-color: var(--background);
|
|
|
|
text-align: center;
|
|
|
|
padding-bottom: 0;
|
|
|
|
line-height: 1rem;
|
|
|
|
}
|
2024-04-17 07:29:56 +02:00
|
|
|
blockquote {
|
|
|
|
margin-left: 1.25em;
|
|
|
|
margin-top: 0;
|
|
|
|
margin-bottom: 0;
|
|
|
|
}
|
2024-04-17 05:39:45 +02:00
|
|
|
span.footer {
|
|
|
|
padding: .1em;
|
|
|
|
font-size: .6em;
|
|
|
|
color: var(--secondary);
|
2024-04-17 04:33:34 +02:00
|
|
|
}
|
2024-04-17 05:39:45 +02:00
|
|
|
hr.sep {
|
2024-04-17 04:33:34 +02:00
|
|
|
margin-top: 0;
|
|
|
|
padding-top: 0;
|
2024-04-17 05:39:45 +02:00
|
|
|
margin-bottom: 0;
|
|
|
|
padding-bottom: 0;
|
2024-04-17 04:33:34 +02:00
|
|
|
border: 1px solid #bf616a70;
|
|
|
|
top: 1.65rem;
|
|
|
|
position: sticky;
|
|
|
|
}
|
|
|
|
div.sticky {
|
2024-04-17 05:51:10 +02:00
|
|
|
top: 1.75rem;
|
2024-04-17 04:33:34 +02:00
|
|
|
position: sticky;
|
2024-04-17 05:39:45 +02:00
|
|
|
background-color: var(--background);
|
2024-04-17 05:51:10 +02:00
|
|
|
padding-top: .5em;
|
2024-04-17 04:33:34 +02:00
|
|
|
}
|
2024-04-15 18:22:16 +02:00
|
|
|
a.upub-title {
|
|
|
|
color: var(--primary);
|
|
|
|
text-decoration: none;
|
|
|
|
}
|
|
|
|
a.upub-title:hover {
|
|
|
|
text-decoration: underline;
|
|
|
|
}
|
2024-04-17 05:59:10 +02:00
|
|
|
a.hover {
|
|
|
|
text-decoration: none;
|
|
|
|
}
|
2024-04-16 07:34:16 +02:00
|
|
|
a.hover:hover {
|
|
|
|
text-decoration: underline;
|
|
|
|
}
|
2024-04-14 06:45:51 +02:00
|
|
|
img.avatar-circle {
|
|
|
|
display: inline;
|
|
|
|
max-height: 2em;
|
|
|
|
border-radius: 50%;
|
|
|
|
}
|
2024-04-16 06:34:50 +02:00
|
|
|
div.tl-header {
|
|
|
|
background-color: #bf616a55;
|
|
|
|
color: #bf616a;
|
|
|
|
}
|
2024-04-16 07:34:16 +02:00
|
|
|
table.post-table {
|
|
|
|
border-collapse: collapse;
|
|
|
|
}
|
2024-04-17 05:39:45 +02:00
|
|
|
table p {
|
2024-04-17 07:19:50 +02:00
|
|
|
margin: .25em 1em;
|
2024-04-16 07:34:16 +02:00
|
|
|
}
|
2024-04-17 05:39:45 +02:00
|
|
|
tr.post-table,
|
2024-04-16 07:34:16 +02:00
|
|
|
td.post-table {
|
|
|
|
border: 1px dashed #bf616a;
|
2024-04-17 07:19:50 +02:00
|
|
|
padding: .5em;
|
2024-04-16 07:34:16 +02:00
|
|
|
}
|
2024-04-14 06:45:51 +02:00
|
|
|
td.top {
|
|
|
|
vertical-align: top;
|
|
|
|
}
|
|
|
|
input[type="submit"].active {
|
|
|
|
background-color: var(--accent);
|
|
|
|
border-color: var(--accent);
|
|
|
|
color: var(--background);
|
|
|
|
cursor: pointer;
|
|
|
|
}
|
2024-04-17 15:29:25 +02:00
|
|
|
main {
|
|
|
|
margin: 1em;
|
|
|
|
}
|
|
|
|
@media screen and (max-width: 786px) {
|
|
|
|
.hidden-on-mobile {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
main {
|
|
|
|
margin: 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
@media screen and (max-width: 400px) {
|
|
|
|
.hidden-on-tiny {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
span.emoji {
|
|
|
|
color: transparent;
|
|
|
|
text-shadow: 0 0 0 var(--secondary);
|
|
|
|
}
|
|
|
|
|
2024-04-14 06:45:51 +02:00
|
|
|
</style>
|
|
|
|
</head>
|
2024-04-14 17:14:00 +02:00
|
|
|
|
|
|
|
</head>
|
2024-04-14 06:45:51 +02:00
|
|
|
<body>
|
|
|
|
</body>
|
|
|
|
</html>
|