use a decent simulation for developing the explore view

This commit is contained in:
John Hess 2024-06-05 01:00:04 -05:00
parent 15175374ca
commit 3a083f4425
3 changed files with 319 additions and 1 deletions

View file

@ -0,0 +1,71 @@
/* Based on the default lighttpd styles, this butters up the UI */
a,
a:active {
text-decoration: none;
color: blue;
}
a:visited {
color: #48468F;
}
a:hover,
a:focus {
text-decoration: underline;
color: red;
}
body {
background-color: #FFDF3F;
}
h2 {
font-family: "Poppins", sans-serif;
margin-bottom: 12px;
}
table {
margin-left: 12px;
}
th,
td {
font: 90% monospace;
text-align: left;
}
th {
font-weight: bold;
padding-right: 14px;
padding-bottom: 3px;
}
td {
padding-right: 14px;
}
td.s,
th.s {
text-align: right;
}
/* Don't display the .. nav tool. */
tbody tr.d:first-of-type
{
display: none;
}
div.list {
background-color: white;
border-top: 1px solid #646464;
border-bottom: 1px solid #646464;
padding-top: 10px;
padding-bottom: 14px;
}
div.foot {
/* No need to display the lighttpd version; this is user-facing. */
display: none;
}

View file

@ -0,0 +1 @@
console.log("butter-dir-listing.js loaded!");