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