blob: 6c6ef5b3acfa27b64f320156d11e1af745cf2a02 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
|
<!DOCTYPE html>
<html lang="en">
<meta charset="utf-8">
<meta name="viewport" content="width=device-width,initial-scale=1">
<title>Vault</title>
<head>
<link href="/static/fontawesome-6.5.1/css/fontawesome.css" rel="stylesheet">
<link href="/static/fontawesome-6.5.1/css/solid.css" rel="stylesheet">
</head>
<style>
body {
margin:1em auto;
max-width:40em;
padding: 0 .62em;
font:1.2em/1.62 sans-serif;
}
a:visited { color:blue; }
table#file-list {
width:100%;
border-collapse:collapse;
}
table > thead > tr {border-bottom:1px solid black}
tr:not(:last-child) {border-bottom:1px solid grey}
th, td {padding:0.2em}
th.file-name {text-align:left}
th.file-icon {width:1em}
th.file-size {white-space:nowrap;}
td.file-size {
text-align:right;
white-space:nowrap;
}
</style>
<body>
|