DISTRHO Plugin Framework
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.

40 lines
1.0KB

  1. .dpf-wasm-example.mod-pedal {
  2. padding: 0;
  3. margin: 0;
  4. width: 540px;
  5. height: 240px;
  6. background: #0e0e0e;
  7. }
  8. .dpf-wasm-example.mod-pedal .canvas_file_open {
  9. display: none;
  10. }
  11. .dpf-wasm-example.mod-pedal .canvas_wrapper {
  12. z-index: 23;
  13. --device-pixel-ratio: 1;
  14. /*image-rendering: pixelated;*/
  15. /*image-rendering: crisp-edges;*/
  16. transform-origin: 0 0 0;
  17. transform: scale(calc(1 / var(--device-pixel-ratio)));
  18. width: 500px;
  19. height: 200px;
  20. position: absolute;
  21. top: 20px;
  22. left: 20px;
  23. }
  24. .dpf-wasm-example.mod-pedal .mod-pedal-input,
  25. .dpf-wasm-example.mod-pedal .mod-pedal-output {
  26. top: 50px;
  27. }
  28. .dpf-wasm-example.mod-pedal .mod-pedal-output .mod-audio-input,
  29. .dpf-wasm-example.mod-pedal .mod-pedal-output .mod-audio-output,
  30. .dpf-wasm-example.mod-pedal .mod-pedal-output .mod-midi-input,
  31. .dpf-wasm-example.mod-pedal .mod-pedal-output .mod-midi-output,
  32. .dpf-wasm-example.mod-pedal .mod-pedal-output .mod-cv-input,
  33. .dpf-wasm-example.mod-pedal .mod-pedal-output .mod-cv-output {
  34. margin-bottom: 26px;
  35. }