upgraded to version 0.3.5
[mirrors/JukeBox.git] / jbx / themes / default / jukebox.css
CommitLineData
1c6591f3
H
1/*
2 * Example CSS for Harvie's JuKe!Box
3 */
4
5body {
6 color: lightblue;
7 font-family: monospace;
8
9 margin: 5px;
10 background-color: black;
11 background-image: url(corner.gif);
12 background-repeat: no-repeat;
13}
14
15a {
16 color: white;
17 text-decoration: none;
18}
19
20h1 {
21 color: white;
22 margin: 15px 0 0 20px;
23}
24
25input {
26 border: 1px solid lightblue;
27}
28
29table * {
30 background-color: darkblue;
31 color: white;
32}
33
34table {
35 border: 0px solid blue;
36 background-color: black;
37}
38
39td {
40 border: 0px solid blue;
41 margin: 0px;
42}
43
44.odd * {
45 background-color: darkblue;
46}
47
48.even * {
49 background-color: #000044;
50}
51
52.blank {
53 margin: 0;
54 padding: 0;
55 background-image: none;
56 color: white;
57 background-color: #000099;
58}
59
60.directory {
61 font-weight: bolder;
62}
63
64
65/* Hovers */
66
67a:hover, a:hover * {
68 text-decoration: underline;
69}
70
71/*tr:hover, tr:hover * { */
72.odd:hover, .odd:hover *,
73.even:hover, .even:hover * {
74 background-color: black;
75}
76
77tr:hover * a {
78 text-decoration: underline;
79}
80
81
82/* Color Classes */
83
84*.red { color: red; }
85*.yellow { color: yellow;}
86*.blue { color: blue;}
87*.green { color: green;}
88*.white { color: white;}
89
90/* Icon Classes */
91
92*.icon { text-decoration: none; width: 16px; height: 16px; display: inline; font-size: 0; padding: 12px 16px 4px 0; margin:0; }
93*.icon, *.icon * a:hover { text-decoration: none; }
94
95*.iplay { background-image: url(icons/playlist.png); }
96*.ifplay { background-image: url(icons/play.png); }
97*.ifstop { background-image: url(icons/stop.png); }
98*.ifolder { background-image: url(icons/folder.png); }
99*.ilogout { background-image: url(icons/logout.png); }
100*.isearch { background-image: url(icons/search.png); }
101*.ihome { background-image: url(icons/home.png); }
102*.iback { background-image: url(icons/back.png); }
103*.ihelp { background-image: url(icons/help.png); }
104
105*/
This page took 0.177515 seconds and 4 git commands to generate.