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 1012B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889
  1. * {
  2. box-sizing: border-box;
  3. line-height: 30px;
  4. font-family: Sans-Serif
  5. }
  6. body {
  7. margin: 12px;
  8. }
  9. body > div {
  10. margin-bottom: 12px;
  11. }
  12. button {
  13. display: inline-block;
  14. padding: 0px;
  15. border: 1px solid #666;
  16. width: 50px;
  17. height: 32px;
  18. background: #ddd;
  19. margin-left: 2px;
  20. margin-right: 2px;
  21. }
  22. button:active,
  23. button.active {
  24. background: #aaa;
  25. }
  26. /*
  27. * Playback
  28. */
  29. #is-playing,
  30. #progress-text {
  31. display: inline-block;
  32. }
  33. #progress-text {
  34. float: right;
  35. }
  36. #group-buttons {
  37. text-align: center;
  38. }
  39. progress {
  40. width: 100%;
  41. height: 24px;
  42. }
  43. /*
  44. * Volume
  45. */
  46. input[type="range"] {
  47. border: 1px solid rgba(0, 0, 0, 0);
  48. box-sizing: border-box;
  49. margin: 0px;
  50. width: 100%;
  51. }
  52. #group-volume {
  53. text-align: center;
  54. border-top: 1px solid #ccc;
  55. }
  56. #group-volume {
  57. padding-top: 12px;
  58. margin-top: 24px;
  59. }
  60. /*
  61. * Sub Delay
  62. */
  63. #group-sub-delay {
  64. text-align: center;
  65. }
  66. #group-sub-delay {
  67. border-top: 1px solid #ccc;
  68. }
  69. #group-sub-delay {
  70. padding-top: 12px;
  71. }
  72. #group-sub-delay button {
  73. margin-top: 6px;
  74. }