LPX55 commited on
Commit
36bd6f8
·
verified ·
1 Parent(s): ef4b0cb

Create style.css

Browse files
Files changed (1) hide show
  1. dir_browser/htdocs/style.css +59 -0
dir_browser/htdocs/style.css ADDED
@@ -0,0 +1,59 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ body {
2
+ margin: 0;
3
+ padding: 8px;
4
+ font-family: Arial, "Helvetica Neue", Helvetica, sans-serif;
5
+ }
6
+ h1 {
7
+ margin: 4px 0 4px 0;
8
+ }
9
+ img {
10
+ border: 0;
11
+ padding: 0 2px;
12
+ vertical-align: text-bottom;
13
+ }
14
+ table.dir-listing {
15
+ border: 0;
16
+ border-collapse: collapse;
17
+ }
18
+ table.dir-listing tbody tr:hover
19
+ {
20
+ background-color: #eee;
21
+ }
22
+ table.dir-listing tbody tr td a
23
+ {
24
+ color: #000;
25
+ text-decoration: none;
26
+ }
27
+ table.dir-listing tbody tr:hover td a
28
+ {
29
+ text-decoration: underline;
30
+ }
31
+ table.dir-listing tr.directory td a
32
+ {
33
+ font-weight: bold;
34
+ }
35
+ table.dir-listing tr td a.symlink {
36
+ font-style: italic;
37
+ color: darkmagenta;
38
+ }
39
+ table.dir-listing th,
40
+ table.dir-listing td
41
+ {
42
+ padding: 2px 20px 2px 2px;
43
+ /* text-align: left; */
44
+ font-family: monospace;
45
+ vertical-align: bottom;
46
+ /* white-space: pre; */
47
+ }
48
+ table.dir-listing th:nth-child(3),
49
+ table.dir-listing td:nth-child(3)
50
+ {
51
+ text-align: right;
52
+ }
53
+ p.auth-user {
54
+ font-size: smaller;
55
+ text-align: right;
56
+ }
57
+ p.trailer {
58
+ font-size: smaller;
59
+ }