dzwdz fixes

trunk
vilmibm 2021-08-06 18:31:08 +00:00
parent ea61f0d54d
commit 0fcc01be67
2 changed files with 250 additions and 227 deletions

View File

@ -3,6 +3,7 @@
<head> <head>
<title>tilde.town</title> <title>tilde.town</title>
<meta charset="UTF-8"> <meta charset="UTF-8">
<meta name="viewport" content="width=device-width,initial-scale=1">
<link rel="icon" href="/favicon.ico"> <link rel="icon" href="/favicon.ico">
<link rel="stylesheet" href="style.css"> <link rel="stylesheet" href="style.css">
</head> </head>
@ -77,6 +78,8 @@
</tr> </tr>
</table> </table>
</section> </section>
<div id="weird-boxes">
<section id="join"> <section id="join">
<p> <p>
<!-- <!--
@ -100,12 +103,17 @@
</p> </p>
</section> </section>
<section id="blog"> <section id="blog">
<p>
a blogthing chronicles system updates. you can read it. it lives <a href="/blog.html">here</a>. a blogthing chronicles system updates. you can read it. it lives <a href="/blog.html">here</a>.
</p>
</section> </section>
<section id="donate"> <section id="donate">
<p>
the town is a non-commercial thing. <a href="https://patreon.com/nathanielksmith">donations</a> are appreciated the town is a non-commercial thing. <a href="https://patreon.com/nathanielksmith">donations</a> are appreciated
</p>
</section> </section>
<section id="lostkey"> <section id="lostkey">
<p>
are you a town resident that lost their ssh key? try this: are you a town resident that lost their ssh key? try this:
<ul> <ul>
<li>using the email address with which you registered</li> <li>using the email address with which you registered</li>
@ -114,11 +122,15 @@
<li>include the new public key in the body of the email</li> <li>include the new public key in the body of the email</li>
<li>wait for an admin to reply and confirm the update</li> <li>wait for an admin to reply and confirm the update</li>
</ul> </ul>
</p>
</section> </section>
<section id="footer"> <section id="footer">
our ECDSA key fingerprint is SHA256:RGr0EXrHOCt/ZZitfMK2WFwbI80OGzat+DlthhTfWf4<br> <p>
ascii art of town by <a href="/~sanqui">~sanqui</a>. ascii art of town by <a href="/~sanqui">~sanqui</a>.
</p><p>
our ECDSA key fingerprint:<br />SHA256:RGr0EXrHOCt/ZZitfMK2WFwbI80OGzat+DlthhTfWf4
</p>
</section> </section>
</div>
</body> </body>
</html> </html>

View File

@ -48,40 +48,51 @@ section#summary {
margin-left:1%; margin-left:1%;
} }
#weird-boxes section {
padding: 0 2ch;
margin-top: 2em;
border: 1px solid #e0b0ff30; /* if there isn't a border the layout goes nuts.
if you don't want a visible border just make it black */
}
section#join { section#join {
margin-top: 5%; margin-left: max((100% - 60ch) * .2, 0ch);
width: 20%; max-width: 40ch;
padding:10px;
margin-left:4%;
} }
section#users { section#users {
margin-left:60%; margin-left: auto;
width:20%; margin-right: max((100% - 38ch) * .25, 0ch);
padding:10px; max-width: 30ch;
} }
section#blog { section#blog {
margin-left:40%; margin-left: auto;
width:10%; margin-right: auto;
padding:20px; max-width: 38ch;
} }
section#donate { section#donate {
margin-left:5%; margin-left: max((100% - 38ch) * .25, 0ch);
width:15%; max-width: 30ch;
padding:15px;
} }
section#lostkey { section#lostkey {
margin-left:80%; margin-left: auto;
padding:10px; margin-right: max((100% - 60ch) * .2, 0ch);
max-width: 60ch; /* would look better if it was thinner, but the dialog
would need to be slightly rephrased */
}
#lostkey ul {
padding-left: 2ch;
} }
section#footer { section#footer {
padding:25px; margin: auto;
margin-top: 4em;
text-align: center; text-align: center;
margin-top:65px; max-width: 50ch;
} }
a { a {