style.css 455 B

123456789101112131415161718192021222324252627282930313233343536
  1. .controls {
  2. position: absolute;
  3. top: 0;
  4. left: 0;
  5. width: 100vw;
  6. height: 130px;
  7. z-index: 999;
  8. /* display: flex;
  9. align-items: center;
  10. justify-content: center; */
  11. background-color: lightgray;
  12. }
  13. .controls > ul {
  14. list-style: none;
  15. margin: 0;
  16. padding: 0;
  17. }
  18. #button {
  19. width: calc(40vw - 10px);
  20. height: 50px;
  21. margin: 5px;
  22. }
  23. #select {
  24. width: calc(40vw - 10px);
  25. margin: 5px;
  26. height: 50px;
  27. }
  28. #output {
  29. width: 100vw;
  30. }