Advertisement
Guest User

Untitled

a guest
Nov 18th, 2017
63
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.67 KB | None | 0 0
  1. .wrapper {
  2. position: fixed;
  3. width: 100%;
  4. height: 100px;
  5. left: 50%;
  6. top: 75%;
  7. margin-left: -50%;
  8. }
  9.  
  10. #player {
  11. width: 50%;
  12. height: 50px;
  13. position: relative;
  14. margin: 0 auto;
  15. top: 25%;
  16. }
  17.  
  18. #volume {
  19. position: absolute;
  20. margin: 0 auto;
  21. top: 1em;
  22. height: 10px;
  23. width: 100%;
  24. border-radius: 25px;
  25. background-color: white;
  26. }
  27.  
  28. #volume .ui-slider-range-min {
  29. height: 100%;
  30. width: 100%;
  31. position: absolute;
  32. background-color: lightblue;
  33. border-radius: 25px;
  34. }
  35.  
  36. #volume .ui-slider-handle {
  37. height: 300px;
  38. width: 300px;
  39. position: absolute;
  40. background-color: lightblue;
  41. border-radius: 50px;
  42. margin-left: -15px;
  43. margin-top: 0px;
  44. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement