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,48 +78,59 @@
</tr> </tr>
</table> </table>
</section> </section>
<section id="join">
<p>
<!--
if you think you might enjoy being a part of this community you can apply for a homestead by running a command in your terminal:<br><br>
<code>ssh join@tilde.town</code><br><br> <div id="weird-boxes">
--> <section id="join">
if you think you might enjoy being a part of this community you can apply for a homestead <a href="https://cgi.tilde.town/users/signup">using this form</a>. <p>
</p> <!--
<p> if you think you might enjoy being a part of this community you can apply for a homestead by running a command in your terminal:<br><br>
it can take up to 30 days to be approved and not all applications are approved.
</p>
<p> <code>ssh join@tilde.town</code><br><br>
if you are new to ssh, there is some help with it <a href="/wiki/getting-started/ssh.html">here</a> -->
</p> if you think you might enjoy being a part of this community you can apply for a homestead <a href="https://cgi.tilde.town/users/signup">using this form</a>.
</section> </p>
<section id="users"> <p>
<p> it can take up to 30 days to be approved and not all applications are approved.
users make webpages sometimes. you can check them out <a href="/users.html">on this page</a> </p>
</p>
</section>
<section id="blog">
a blogthing chronicles system updates. you can read it. it lives <a href="/blog.html">here</a>.
</section>
<section id="donate">
the town is a non-commercial thing. <a href="https://patreon.com/nathanielksmith">donations</a> are appreciated
</section>
<section id="lostkey">
are you a town resident that lost their ssh key? try this:
<ul>
<li>using the email address with which you registered</li>
<li>send an email to root@tilde.town</li>
<li>put "new public key" in the subject</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>
</ul>
</section> <p>
<section id="footer"> if you are new to ssh, there is some help with it <a href="/wiki/getting-started/ssh.html">here</a>
our ECDSA key fingerprint is SHA256:RGr0EXrHOCt/ZZitfMK2WFwbI80OGzat+DlthhTfWf4<br> </p>
ascii art of town by <a href="/~sanqui">~sanqui</a>. </section>
</section> <section id="users">
<p>
users make webpages sometimes. you can check them out <a href="/users.html">on this page</a>
</p>
</section>
<section id="blog">
<p>
a blogthing chronicles system updates. you can read it. it lives <a href="/blog.html">here</a>.
</p>
</section>
<section id="donate">
<p>
the town is a non-commercial thing. <a href="https://patreon.com/nathanielksmith">donations</a> are appreciated
</p>
</section>
<section id="lostkey">
<p>
are you a town resident that lost their ssh key? try this:
<ul>
<li>using the email address with which you registered</li>
<li>send an email to root@tilde.town</li>
<li>put "new public key" in the subject</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>
</ul>
</p>
</section>
<section id="footer">
<p>
ascii art of town by <a href="/~sanqui">~sanqui</a>.
</p><p>
our ECDSA key fingerprint:<br />SHA256:RGr0EXrHOCt/ZZitfMK2WFwbI80OGzat+DlthhTfWf4
</p>
</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;
text-align:center; margin-top: 4em;
margin-top:65px; text-align: center;
max-width: 50ch;
} }
a { a {