equal
deleted
inserted
replaced
63 a img { |
63 a img { |
64 border-width: 0; |
64 border-width: 0; |
65 } |
65 } |
66 |
66 |
67 div#playlist { |
67 div#playlist { |
68 margin: 138px 8px 0 8px; |
68 margin: 174px 8px 0 8px; |
69 } |
69 } |
70 |
70 |
71 a.tracklink { |
71 a.tracklink { |
72 text-decoration: none; |
72 text-decoration: none; |
73 color: white; |
73 color: white; |
104 background-repeat: repeat-x; |
104 background-repeat: repeat-x; |
105 text-align: center; |
105 text-align: center; |
106 margin-top: 10px; |
106 margin-top: 10px; |
107 padding: 5px; |
107 padding: 5px; |
108 } |
108 } |
|
109 |
|
110 /* Position slider (playhead) */ |
|
111 |
|
112 div#playhead { |
|
113 background-image: url(images/position-empty.png); |
|
114 width: 250px; |
|
115 background-repeat: no-repeat; |
|
116 background-position: center center; |
|
117 margin: 0 auto 10px auto; |
|
118 } |
|
119 |
|
120 div#playhead-filler { |
|
121 background-image: url(images/position-full.png); |
|
122 width: 150px; |
|
123 background-repeat: no-repeat; |
|
124 background-position: left center; |
|
125 } |
|
126 |
|
127 div#playhead-button { |
|
128 background-image: url(images/playhead.png); |
|
129 width: 16px; |
|
130 height: 16px; |
|
131 font-size: 1px; |
|
132 position: absolute; |
|
133 background-repeat: no-repeat; |
|
134 background-position: center center; |
|
135 } |
|
136 |