index.css 627 B

12345678910111213141516171819202122232425262728293031323334353637
  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-width: 1px;
  22. border-radius: 6px;
  23. background-color: #fff;
  24. cursor: pointer;
  25. text-align: center;
  26. }
  27. .room input:visited,
  28. .room button:focus,
  29. .room button:visited,
  30. .room button:hover,
  31. .room button:active {
  32. outline: none;
  33. }