style.css 448 B

123456789101112131415161718192021222324252627282930313233
  1. img {
  2. height: 40vw;
  3. width: 40vw;
  4. float: left;
  5. }
  6. canvas {
  7. height: 60px;
  8. width: 100%;
  9. }
  10. #parent {
  11. width: 100%;
  12. display: flex;
  13. flex-flow: row-reverse;
  14. }
  15. #parrot {
  16. display: flex;
  17. width: 100%;
  18. flex-flow: column;
  19. }
  20. #help {
  21. font-size: 16px;
  22. }
  23. #footer {
  24. position: fixed;
  25. background-color: #ccc;
  26. width: 100%;
  27. left: 0;
  28. right: 0;
  29. bottom: 0;
  30. height: 1.5rem;
  31. text-align: center;
  32. }