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