You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

style.css 600B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  1. * {
  2. box-sizing: border-box;
  3. }
  4. body {
  5. margin: 12px;
  6. }
  7. body > div {
  8. margin-bottom: 12px;
  9. }
  10. button {
  11. display: inline-block;
  12. padding: 0px;
  13. border: 1px solid #666;
  14. width: 50px;
  15. height: 32px;
  16. background: #ddd;
  17. margin-left: 2px;
  18. margin-right: 2px;
  19. }
  20. button:active,
  21. button.active {
  22. background: #aaa;
  23. }
  24. progress {
  25. width: 100%;
  26. height: 24px;
  27. }
  28. input[type="range"] {
  29. border: 1px solid rgba(0, 0, 0, 0);
  30. box-sizing: border-box;
  31. margin: 0px;
  32. width: 100%;
  33. }
  34. #is-playing,
  35. #progress-text {
  36. display: inline-block;
  37. }
  38. #progress-text {
  39. float: right;
  40. }
  41. #group-buttons {
  42. text-align: center;
  43. }