Playerbar.scss 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576
  1. .playerbar {
  2. position: sticky;
  3. bottom: 0;
  4. left: 0;
  5. width: 100%;
  6. padding-bottom: 1%;
  7. background-color: #131341;
  8. &__range {
  9. margin: 0 10px 6px 10px;
  10. -webkit-appearance: none;
  11. outline: none;
  12. cursor: pointer;
  13. &::-webkit-slider-thumb {
  14. -webkit-appearance: none;
  15. border: 1px solid #000000;
  16. height: 20px;
  17. width: 20px;
  18. border-radius: 100%;
  19. cursor: pointer;
  20. margin-top: -8px;
  21. box-shadow: 1px 1px 1px #000000, 0px 0px 1px #0d0d0d;
  22. }
  23. &::-webkit-slider-runnable-track {
  24. width: 100%;
  25. border: 1px solid rgba(255, 255, 0, 0.26);
  26. height: 4px;
  27. }
  28. }
  29. &__info {
  30. display: flex;
  31. justify-content: space-between;
  32. width: 95%;
  33. margin: 0 auto;
  34. }
  35. button {
  36. font-size: large;
  37. padding: 0.5%;
  38. background-color: yellow;
  39. border: none;
  40. margin: 0 5px;
  41. }
  42. }
  43. .timestamp {
  44. margin: 0 10px;
  45. font-weight: 500;
  46. }
  47. .plumline {
  48. &::-webkit-slider-runnable-track {
  49. background: #2f1dce;
  50. }
  51. }
  52. .blueline {
  53. &::-webkit-slider-runnable-track {
  54. background: #70b2e7;
  55. }
  56. }
  57. .yellowThumb {
  58. &::-webkit-slider-thumb {
  59. background: yellow;
  60. }
  61. }
  62. .blueThumb {
  63. &::-webkit-slider-thumb {
  64. background: #499fe6;
  65. }
  66. }