Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <style>
- /* MUSIC PLAYER THING */
- @font-face{
- font-family:'musicfont';
- src:url(https://dl.dropboxusercontent.com/u/4556289/againts.ttf);
- }
- ::-webkit-scrollbar {
- width: 4px;
- background-color: transparent;
- }
- ::-webkit-scrollbar-thumb {
- border-radius: 0px;
- -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, .3);
- background-color: black;
- }
- #musiclist{
- position: absolute;
- bottom: 100px;
- left: 100px;
- height:84px;
- width: 200px;
- overflow: auto;
- overflow-x: hidden;
- padding-right: 0px;
- cursor:default;
- border-top: 2px solid black;
- border-bottom: 1px solid black;
- }
- #tracklist{
- position: relative;
- width: 100%;
- height: 21px;
- border: 1px solid black;
- box-sizing: border-box;
- border-top: 0px solid transparent;
- border-right: 2px solid black;
- overflow: hidden;
- -webkit-transition: all 1s;
- transition: all 1s;
- z-index: 1;
- }
- #infoslide{
- float: left;
- width: 100%;
- height: 100%;
- text-align: left;
- overflow: hidden;
- font-size: 12pt;
- font-weight: 600;
- letter-spacing: 2px;
- font-family: 'musicfont', Times, Arial;
- color: black;
- -webkit-transition: all 1s;
- transition: all 1s;
- box-sizing: border-box;
- padding-left: 30px;
- }
- #trackplay{
- position: absolute;
- left: 0px;
- top: 0px;
- height: 100%;
- width: 0px;
- border-right: 1px solid black;
- overflow: hidden;
- -webkit-transition: all 1s;
- transition: all 1s;
- }
- #trackplay audio{
- margin-left: -5px;
- zoom: 110%;
- margin-top: -7px;
- }
- #tracklist:hover #trackplay{
- width: 25px;
- }
- #tracklist:hover #infoslide{
- padding-left: 50px;
- }
- #tracklist:hover{
- -webkit-transition: all .1s;
- transition: all .1s;
- border-left: 2px solid black;
- }
- /* CUSTOMIZATION */
- #infoslide{
- color: ;
- }
- #musiclist{
- border-color: ;
- background-color: ;
- }
- #tracklist{
- border-color: ;
- background-color: ;
- }
- </style>
Advertisement
Add Comment
Please, Sign In to add comment