webamp/css/equalizer-window.css
2016-08-29 20:17:55 -07:00

152 lines
2.7 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: 20px;
top: 37px;
}
#winamp2-js #band-60 {
position: absolute;
left: 80px;
top: 37px;
}
#winamp2-js #band-170 {
position: absolute;
left: 98px;
top: 37px;
}
#winamp2-js #band-310 {
position: absolute;
left: 116px;
top: 37px;
}
#winamp2-js #band-600 {
position: absolute;
left: 134px;
top: 37px;
}
#winamp2-js #band-1000 {
position: absolute;
left: 152px;
top: 37px;
}
#winamp2-js #band-3000 {
position: absolute;
left: 170px;
top: 37px;
}
#winamp2-js #band-6000 {
position: absolute;
left: 188px;
top: 37px;
}
#winamp2-js #band-12000 {
position: absolute;
left: 206px;
top: 37px;
}
#winamp2-js #band-14000 {
position: absolute;
left: 224px;
top: 37px;
}
#winamp2-js #band-16000 {
position: absolute;
left: 242px;
top: 37px;
}
#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: 64px;
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);
}