summaryrefslogtreecommitdiff
path: root/style.css
blob: 3d6a70ca2c4c7802a61ba8e7c87c0fb6e53e660a (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
/* Copyright © 2014 Luke Shumaker <lukeshu@sbcglobal.net>
 * This work is free. You can redistribute it and/or modify it under the
 * terms of the Do What The Fuck You Want To Public License, Version 2,
 * as published by Sam Hocevar. See the ./COPYING file for more details.
 */

@import url('https://www.parabola.nu/static/archweb.css');

/* generic */

td {
	font: 1.2em monospace;
	height: 24px;
	vertical-align: middle;
	padding-left: 4px;
}

td.number {
	text-align: right;
}

td a {
	margin-left: 20px;
}

tr:hover {
	box-shadow: inset 0 0 0 1px #bcd;
}

td a:before {
	width: 16px;
	height: 16px;
	margin-left: -20px;
	margin-right: 4px;
}

/* inode */

tr.hidden { /*opacity: 0.5;*/ display: none; }

tr.link a:before { content: url("link.png"); }

tr.dir a:after { content: "/"; }
tr.dir a:before { content: url("dir.png"); }
tr.dir.parent a:before { content: url("parent.png"); }

tr.file a:before { content: url("file.png"); }

/* domain */

tr.dir.repo a:before { content: url("repo.png"); }
tr.file.pkg.tar a:before { content: url("pkg.png"); }
tr.file.iso a:before { content: url("iso.png"); }
tr.file.tar a:before { content: url("tar.png"); }
tr.file.txt a:before { content: url("txt.png"); }
tr.file.torrent a:before { content: url("torrent.png"); }

tr.arch td { background:#7fc3e5; }
tr.para td { background:#9fa6e3; }
tr.community {}