Make things prettier

This commit is contained in:
Salt 2021-01-19 20:13:42 -06:00
parent 7433450f7c
commit 025974647f
2 changed files with 12 additions and 0 deletions

View File

@ -11,6 +11,7 @@
<div class="section">
<h1>ASCII Art</h1>
<p>Where known, artists are attributed. Sadly, I don't know the artists for most of these.</p>
<p>You can link to a specific section or piece by appending <code>#name</code> to the URL. So to link someone to the JoJo section, you'd link to <code>desu.ltd/ascii#jojo</code>.</p>
<?php
$dir = new DirectoryIterator(".");
foreach ($dir as $fileinfo) {

View File

@ -42,6 +42,17 @@ a.button {
display: inline-block;
padding: 1em;
}
code {
background: rgba(0,0,0,0.2);
}
code:before {
content: "[";
opacity: 0.25;
}
code:after {
content: "]";
opacity: 0.25;
}
dl {
list-style-type: none;
margin: 0;