index.css 714 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  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. .hint {
  10. font-size: 12px;
  11. font-style: italic;
  12. font-weight: 100;
  13. color: #666;
  14. }
  15. .room {
  16. max-width: 640px;
  17. margin: 0 auto;
  18. }
  19. .room .local-stream,
  20. .room .remote-stream {
  21. text-align: left;
  22. }
  23. .room button {
  24. padding: 8px 0;
  25. display: inline-block;
  26. width: 100%;
  27. border-width: 1px;
  28. border-radius: 6px;
  29. background-color: #fff;
  30. cursor: pointer;
  31. text-align: center;
  32. }
  33. .room input:visited,
  34. .room button:focus,
  35. .room button:visited,
  36. .room button:hover,
  37. .room button:active {
  38. outline: none;
  39. }