use a decent simulation for developing the explore view
This commit is contained in:
parent
15175374ca
commit
3a083f4425
3 changed files with 319 additions and 1 deletions
71
assets/css/butter-dir-listing.css
Normal file
71
assets/css/butter-dir-listing.css
Normal 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;
|
||||
}
|
||||
1
assets/js/butter-dir-listing.js
Normal file
1
assets/js/butter-dir-listing.js
Normal file
|
|
@ -0,0 +1 @@
|
|||
console.log("butter-dir-listing.js loaded!");
|
||||
Loading…
Add table
Add a link
Reference in a new issue