mirror of
https://github.com/captbaritone/webamp.git
synced 2026-01-24 02:36:00 +00:00
42 lines
1.2 KiB
CSS
42 lines
1.2 KiB
CSS
@import url("main-window.css");
|
|
@import url("context-menu.css");
|
|
|
|
/* Rules used by all windows */
|
|
#winamp2-js {
|
|
height: 116px;
|
|
width: 275px;
|
|
}
|
|
|
|
|
|
/* Range input css reset */
|
|
#winamp2-js input[type=range]{ -webkit-appearance: none; margin: 0; padding: 0; background: none; border: none; }
|
|
#winamp2-js input[type=range]::-webkit-slider-thumb { -webkit-appearance: none; border: none; border-radius: 0; background: none; }
|
|
#winamp2-js input[type=range]::-moz-range-thumb { border: none; border-radius: 0; background: none; }
|
|
#winamp2-js input[type=range]::-moz-range-track { border: none; background: none; }
|
|
#winamp2-js input[type=range]:focus { outline: none; }
|
|
#winamp2-js input[type=range]::-moz-focus-outer { border: 0; }
|
|
|
|
#winamp2-js a:focus { outline: none; }
|
|
|
|
/* Animation */
|
|
@keyframes blink {
|
|
0% { opacity: 1.0; }
|
|
50% { opacity: 0.0; }
|
|
100% { opacity: 1.0; }
|
|
}
|
|
@-webkit-keyframes blink {
|
|
0% { opacity: 1.0; }
|
|
50% { opacity: 0.0; }
|
|
100% { opacity: 1.0; }
|
|
}
|
|
|
|
#winamp2-js .character {
|
|
display: block;
|
|
float: left; /* Safari does not do inline-block well */
|
|
width: 5px;
|
|
height: 6px;
|
|
/* background-image: TEXT.BMP via Javascript */
|
|
text-indent: -9999px;
|
|
|
|
}
|
|
|