mirror of
https://github.com/captbaritone/webamp.git
synced 2026-01-23 18:25:30 +00:00
176 lines
3 KiB
CSS
176 lines
3 KiB
CSS
/* Styles */
|
|
#winamp2-js #equalizer-window {
|
|
height: 116px;
|
|
width: 275px;
|
|
}
|
|
|
|
#winamp2-js .equalizer-top {
|
|
height: 14px;
|
|
width: 275px;
|
|
}
|
|
|
|
#winamp2-js #on {
|
|
position: absolute;
|
|
width: 26px;
|
|
height: 12px;
|
|
top: 18px;
|
|
left: 14px;
|
|
}
|
|
|
|
#winamp2-js #auto {
|
|
position: absolute;
|
|
width: 32px;
|
|
height: 12px;
|
|
top: 18px;
|
|
left: 40px;
|
|
}
|
|
|
|
#winamp2-js #presets {
|
|
position: absolute;
|
|
width: 44px;
|
|
height: 12px;
|
|
top: 18px;
|
|
left: 217px;
|
|
}
|
|
|
|
#winamp2-js #eqGraph {
|
|
position: absolute;
|
|
width: 113px;
|
|
height: 19px;
|
|
top: 17px;
|
|
left: 86px;
|
|
}
|
|
|
|
#winamp2-js #preamp {
|
|
position: absolute;
|
|
left: 19px;
|
|
top: 38px;
|
|
}
|
|
|
|
#winamp2-js #plus12db {
|
|
position: absolute;
|
|
left: 45px;
|
|
top: 36px;
|
|
width: 22px;
|
|
height: 8px;
|
|
}
|
|
|
|
#winamp2-js #zerodb {
|
|
position: absolute;
|
|
left: 45px;
|
|
top: 64px;
|
|
width: 22px;
|
|
height: 8px;
|
|
}
|
|
|
|
#winamp2-js #minus12db {
|
|
position: absolute;
|
|
left: 45px;
|
|
top: 95px;
|
|
width: 22px;
|
|
height: 8px;
|
|
}
|
|
|
|
#winamp2-js #band-60 {
|
|
position: absolute;
|
|
left: 79px;
|
|
top: 38px;
|
|
}
|
|
|
|
#winamp2-js #band-170 {
|
|
position: absolute;
|
|
left: 97px;
|
|
top: 38px;
|
|
}
|
|
|
|
#winamp2-js #band-310 {
|
|
position: absolute;
|
|
left: 115px;
|
|
top: 38px;
|
|
}
|
|
|
|
#winamp2-js #band-600 {
|
|
position: absolute;
|
|
left: 133px;
|
|
top: 38px;
|
|
}
|
|
|
|
#winamp2-js #band-1000 {
|
|
position: absolute;
|
|
left: 151px;
|
|
top: 38px;
|
|
}
|
|
|
|
#winamp2-js #band-3000 {
|
|
position: absolute;
|
|
left: 169px;
|
|
top: 38px;
|
|
}
|
|
|
|
#winamp2-js #band-6000 {
|
|
position: absolute;
|
|
left: 187px;
|
|
top: 38px;
|
|
}
|
|
|
|
#winamp2-js #band-12000 {
|
|
position: absolute;
|
|
left: 205px;
|
|
top: 38px;
|
|
}
|
|
|
|
#winamp2-js #band-14000 {
|
|
position: absolute;
|
|
left: 223px;
|
|
top: 38px;
|
|
}
|
|
|
|
#winamp2-js #band-16000 {
|
|
position: absolute;
|
|
left: 241px;
|
|
top: 38px;
|
|
}
|
|
|
|
#winamp2-js .band {
|
|
width: 14px;
|
|
height: 63px;
|
|
}
|
|
|
|
#winamp2-js .band input[type=range] {
|
|
/* These two numbers are pure magic. No idea why they work */
|
|
margin-left: -25px;
|
|
margin-top: 25px;
|
|
width: 63px;
|
|
height: 14px;
|
|
background-position: 0 0;
|
|
transform: rotate(270deg);
|
|
cursor:url('../cursors/POSBAR.PNG'), auto;
|
|
}
|
|
|
|
#winamp2-js .band input[type=range]::-webkit-slider-thumb {
|
|
height: 11px;
|
|
width: 11px;
|
|
/* Confusingly, due to rotation, this is actually left margin */
|
|
margin-top: -1px;
|
|
cursor:url('../cursors/POSBAR.PNG'), auto;
|
|
/* Counteract the input's rotation */
|
|
-webkit-transform: rotate(-270deg);
|
|
-moz-transform: rotate(-270deg);
|
|
-ms-transform: rotate(-270deg);
|
|
-o-transform: rotate(-270deg);
|
|
transform: rotate(-270deg);
|
|
}
|
|
|
|
#winamp2-js .band input[type=range]::-moz-range-thumb {
|
|
height: 11px;
|
|
width: 11px;
|
|
/* Confusingly, due to rotation, this is actually left margin */
|
|
margin-top: -1px;
|
|
cursor:url('../cursors/POSBAR.PNG'), auto;
|
|
/* Counteract the input's rotation */
|
|
-webkit-transform: rotate(-270deg);
|
|
-moz-transform: rotate(-270deg);
|
|
-ms-transform: rotate(-270deg);
|
|
-o-transform: rotate(-270deg);
|
|
transform: rotate(-270deg);
|
|
}
|