index.css 584 B

123456789101112131415161718192021222324252627282930313233343536
  1. .App {
  2. margin-top: 60px;
  3. font-family: 'Avenir', Helvetica, Arial, sans-serif;
  4. -webkit-font-smoothing: antialiased;
  5. -moz-osx-font-smoothing: grayscale;
  6. text-align: center;
  7. color: #2c3e50;
  8. }
  9. .room {
  10. max-width: 640px;
  11. margin: 0 auto;
  12. }
  13. .room .local-stream,
  14. .room .remote-stream {
  15. text-align: left;
  16. }
  17. .room button {
  18. padding: 8px 0;
  19. display: inline-block;
  20. width: 100%;
  21. border-radius: 6px;
  22. cursor: pointer;
  23. text-align: center;
  24. ;
  25. }
  26. .room input:visited,
  27. .room button:focus,
  28. .room button:visited,
  29. .room button:hover,
  30. .room button:active {
  31. outline: none;
  32. }