summaryrefslogtreecommitdiff
path: root/assets/index.css
blob: 848a17a0d3fbc1f889ddd3b3d1423e3bc77f0f56 (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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
* {
  margin:0;
  padding:0;
  -webkit-box-sizing:border-box;
     -moz-box-sizing:border-box;
         box-sizing: border-box;
}

html {
  min-height: 100%;
  border: 20px solid #ddd;
  color: #666;
}

body {
  padding: 20px;
}

footer {
  margin-top: 2em;
  text-align:center;
  line-height: 1.5em;
}

/* table */
table {
  width:100%;
  border-collapse:collapse;
}
tr {
  outline:0;
  border:0;
}
tr:hover td {
  background:#eee;
}
th {
  text-align:left;
  padding-right:20px;
}
/* 2nd Column: Filename */
th + th {
  width:65%;
}
/* 3rd Column: Last Modified */
th + th + th {
}
/* 4th Column: Size */
th + th + th + th {
  width:5%;
}
tr td:first-of-type {
  padding-left:10px;
  padding-right:10px;
}
td {
  padding:5px 0;
  outline:0;
  border:0;
  border-bottom:1px solid #edf1f5;
  vertical-align:middle;
  text-align:left;
}
td a{
  display: block;
}
tr.parent a {
  color:#9099A3;
}
.parent a:hover {
  color:#2281d0;
}