Fix for TC-1560 UI always zoomed out
[profile/ivi/Modello_Multimediaplayer.git] / css / style.css
1 @viewport{
2         width: 720px;
3         height: 1280px;
4         user-zoom: fixed;
5 }
6
7 .playerWrapper video {
8         position: absolute;
9         top: 230px;
10         left: 55px;
11         width: 610px;
12         height: 300px;
13         padding: 0;
14         margin: 0;
15         display: none;
16 }
17
18 .carouselWrapper {
19         width: 765px;
20         height: 300px;
21         position: absolute;
22         top: 230px;
23         left: -15px;
24         padding: 0;
25         margin: 0;
26         display: block;
27         border-bottom-style: solid;
28         border-bottom-width: 1px;
29 }
30
31 .carouselList {
32         margin: 0;
33         padding: 0;
34         list-style: none;
35         display: block;
36 }
37
38 .carouselList li {
39         display: block;
40         float: left;
41 }
42
43 .carouselItem {
44         margin-right: 15px;
45         display: block;
46         width: 240px;
47         height: 300px;
48         overflow: hidden;
49 }
50
51 .carouselItemSelected {
52         box-shadow: 0 0 5px 1px #1DA2FF;
53 }
54
55 .carouselImage {
56         width: 240px;
57         height: 240px;
58 }
59
60 .carouselImageReflect {
61         -webkit-box-reflect: below 1px
62                 -webkit-gradient(linear, left top, left bottom, from(transparent),
63                 to(rgba(250, 250, 225, 0.4) ) )
64 }
65
66 .albumCarouselDescription {
67         width: 230px;
68         height: 95px;
69         bottom: 95px;
70         padding: 0 5px;
71 }
72
73 .albumCarouselDescriptionText {
74         text-align: center;
75         top: 15px;
76 }
77
78 .backgroundAudioClass {
79         position: absolute;
80         top: 0;
81         left: 0;
82         width: 720px;
83         height: 1280px;
84         -webkit-background-size: cover;
85         -moz-background-size: cover;
86         -ms-background-size: cover;
87         -o-background-size: cover;
88         background-size: cover;
89 }
90
91 /* spectrum analyzer */
92 .spectrumAnalyzer {
93         position: absolute;
94         top: 775px;
95         left: 300px;
96         width: 400px;
97         height: 110px;
98 }
99
100 .barAnalyzer {
101         position: absolute;
102         width: 33px;
103         height: 5px;
104         float: left;
105         margin-left: 5px;
106 }
107
108 .bar1Class {
109         left: 0;
110 }
111
112 .bar2Class {
113         left: 38px;
114 }
115
116 .bar3Class {
117         left: 76px;
118 }
119
120 .bar4Class {
121         left: 114px;
122 }
123
124 .bar5Class {
125         left: 152px;
126 }
127
128 .bar6Class {
129         left: 190px;
130 }
131
132 .bar7Class {
133         left: 228px;
134 }
135
136 .bar8Class {
137         left: 266px;
138 }
139
140 .bar9Class {
141         left: 304px;
142 }
143
144 .bar10Class {
145         left: 342px;
146 }
147
148 /* text panel artist, album, song title */
149 .currentlyPlayingPreviewClass {
150         position: absolute;
151         top: 0;
152         left: 0;
153 }
154
155 .textPanel {
156         position: absolute;
157         width: 405px;
158         top: 577px;
159         left: 55px;
160 }
161
162 .blueIconText {
163         position: relative;
164         height: 25px;
165 }
166
167 /* time progress bar and remaining time */
168 .timeBarClass {
169         position: absolute;
170         top: 0;
171         left: 283px;
172         width: 325px;
173         height: 80px;
174         font-size: large;
175 }
176
177 .infoPanelClass {
178         position: absolute;
179         left: 283px;
180         top: 80px;
181         width: 325px;
182 }
183
184 .volumeControlClass {
185         position: absolute;
186         top: 928px;
187         left: 35px;
188         width: 660px;
189         height: 55px;
190         background: none;
191 }
192
193 .progressPot {
194         position: absolute;
195         top: 4px;
196         left: 0;
197         width: 100%;
198         height: 3px;
199 }
200
201 .progressBar {
202         position: absolute;
203         top: 50px;
204         left: 0;
205         width: 325px;
206         height: 10px;
207         border-style: solid;
208         border-width: 0 0 1px 0;
209 }
210
211 .leftText {
212         position: absolute;
213         top: 10px;
214         left: 0;
215         width: 40px;
216         height: 15px;
217 }
218
219 .rightText {
220         position: absolute;
221         top: 10px;
222         right: 25px;
223         width: 40px;
224         height: 15px;
225 }
226
227 /*audio controls*/
228 .audioControlsButtons {
229         position: absolute;
230         top: 1000px;
231         left: 0;
232         width: 610px;
233         padding: 0 55px;
234         background-repeat: no-repeat;
235         background-position: 50%;
236 }
237
238 .previousBtn {
239         opacity: 1;
240         width: 66px;
241         height: 66px;
242         float: left;
243         margin: 0;
244         margin-right: 35px;
245         background-repeat: no-repeat;
246         background-position: 50%;
247 }
248
249 .previousBtnActive {
250         opacity: 1;
251         width: 66px;
252         height: 66px;
253         float: left;
254         margin: 0;
255         margin-right: 35px;
256         background-repeat: no-repeat;
257         background-position: 50%;
258 }
259
260 .prevBtnInactive {
261         opacity: 0.5;
262         width: 66px;
263         height: 66px;
264         float: left;
265         margin: 0;
266         margin-right: 35px;
267         background-repeat: no-repeat;
268         background-position: 50%;
269 }
270
271 .pauseBtn {
272         opacity: 1;
273         width: 66px;
274         height: 66px;
275         float: left;
276         margin: 0 35px;
277         background-repeat: no-repeat;
278         background-position: 50%;
279 }
280
281 .playBtn {
282         opacity: 1;
283         width: 66px;
284         height: 66px;
285         float: left;
286         margin: 0 35px;
287         background-repeat: no-repeat;
288         background-position: 50%;
289 }
290
291 .nextBtn {
292         opacity: 1;
293         width: 66px;
294         height: 66px;
295         float: left;
296         margin: 0 35px;
297         background-repeat: no-repeat;
298         background-position: 50%;
299 }
300
301 .nextBtnActive {
302         opacity: 1;
303         width: 66px;
304         height: 66px;
305         float: left;
306         margin: 0 35px;
307         background-repeat: no-repeat;
308         background-position: 50%;
309 }
310
311 .nextBtnInactive {
312         opacity: 0.5;
313         width: 66px;
314         height: 66px;
315         float: left;
316         margin: 0 35px;
317         background-repeat: no-repeat;
318         background-position: 50%;
319 }
320
321 .shuffleBtn {
322         width: 66px;
323         height: 66px;
324         float: left;
325         margin: 0 35px;
326         background-repeat: no-repeat;
327         background-position: 50%;
328 }
329
330 .shuffleBtnActive {
331         width: 66px;
332         height: 66px;
333         float: left;
334         margin: 0 35px;
335         background-repeat: no-repeat;
336         background-position: 50%;
337 }
338
339 .repeatBtn {
340         width: 66px;
341         height: 66px;
342         float: left;
343         margin: 0;
344         margin-left: 35px;
345         background-repeat: no-repeat;
346         background-position: 50%;
347 }
348
349 .repeatBtnActive {
350         width: 66px;
351         height: 66px;
352         float: left;
353         margin: 0;
354         margin-left: 35px;
355         background-repeat: no-repeat;
356         background-position: 50%;
357 }
358
359 .songNameTextPosition {
360         top: 12px;
361 }
362
363 .artistNameTextMargin {
364         margin-bottom: 5px;
365 }