thisisnotras

music list css

Dec 12th, 2016
278
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.91 KB | None | 0 0
  1. <style>
  2.  
  3.  
  4. /* MUSIC PLAYER THING */
  5.  
  6. @font-face{
  7. font-family:'musicfont';
  8. src:url(https://dl.dropboxusercontent.com/u/4556289/againts.ttf);
  9. }
  10.  
  11. ::-webkit-scrollbar {
  12. width: 4px;
  13. background-color: transparent;
  14. }
  15.  
  16.  
  17. ::-webkit-scrollbar-thumb {
  18. border-radius: 0px;
  19. -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, .3);
  20. background-color: black;
  21. }
  22.  
  23. #musiclist{
  24. position: absolute;
  25. bottom: 100px;
  26. left: 100px;
  27. height:84px;
  28. width: 200px;
  29. overflow: auto;
  30. overflow-x: hidden;
  31. padding-right: 0px;
  32. cursor:default;
  33. border-top: 2px solid black;
  34. border-bottom: 1px solid black;
  35. }
  36.  
  37. #tracklist{
  38. position: relative;
  39. width: 100%;
  40. height: 21px;
  41. border: 1px solid black;
  42. box-sizing: border-box;
  43. border-top: 0px solid transparent;
  44. border-right: 2px solid black;
  45. overflow: hidden;
  46. -webkit-transition: all 1s;
  47. transition: all 1s;
  48. z-index: 1;
  49. }
  50.  
  51.  
  52. #infoslide{
  53. float: left;
  54. width: 100%;
  55. height: 100%;
  56. text-align: left;
  57. overflow: hidden;
  58. font-size: 12pt;
  59. font-weight: 600;
  60. letter-spacing: 2px;
  61. font-family: 'musicfont', Times, Arial;
  62. color: black;
  63. -webkit-transition: all 1s;
  64. transition: all 1s;
  65. box-sizing: border-box;
  66. padding-left: 30px;
  67. }
  68.  
  69. #trackplay{
  70. position: absolute;
  71. left: 0px;
  72. top: 0px;
  73. height: 100%;
  74. width: 0px;
  75. border-right: 1px solid black;
  76. overflow: hidden;
  77. -webkit-transition: all 1s;
  78. transition: all 1s;
  79. }
  80.  
  81. #trackplay audio{
  82. margin-left: -5px;
  83. zoom: 110%;
  84. margin-top: -7px;
  85. }
  86.  
  87. #tracklist:hover #trackplay{
  88. width: 25px;
  89. }
  90.  
  91. #tracklist:hover #infoslide{
  92. padding-left: 50px;
  93. }
  94.  
  95. #tracklist:hover{
  96. -webkit-transition: all .1s;
  97. transition: all .1s;
  98. border-left: 2px solid black;
  99. }
  100.  
  101. /* CUSTOMIZATION */
  102.  
  103. #infoslide{
  104. color: ;
  105. }
  106.  
  107. #musiclist{
  108. border-color: ;
  109. background-color: ;
  110. }
  111.  
  112. #tracklist{
  113. border-color: ;
  114. background-color: ;
  115. }
  116.  
  117.  
  118. </style>
Advertisement
Add Comment
Please, Sign In to add comment