_webcam.scss 1.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364
  1. // @import '_variables.scss';
  2. // @import '_utils.scss';
  3. // @import '_animation.scss';
  4. // @import '_common.scss';
  5. .uppy-Webcam-container {
  6. width: 100%;
  7. height: 100%;
  8. display: flex;
  9. justify-content: center;
  10. align-items: center;
  11. }
  12. .uppy-Webcam-videoContainer {
  13. height: 100%;
  14. display: flex;
  15. justify-content: center;
  16. align-items: center;
  17. }
  18. .uppy-Webcam-video {
  19. max-width: 100%;
  20. max-height: 100%;
  21. }
  22. // .uppy-Webcam-canvas {
  23. // display: none;
  24. // }
  25. .uppy-Webcam-buttonContainer {
  26. position: absolute;
  27. bottom: 30px;
  28. right: 30px;
  29. }
  30. .uppy-Webcam-recordButton .UppyIcon {
  31. width: 50%;
  32. height: 50%;
  33. position: relative;
  34. top: -1px;
  35. }
  36. .uppy-Webcam-permissons {
  37. padding: 15px;
  38. display: flex;
  39. align-items: center;
  40. justify-content: center;
  41. flex-flow: column wrap;
  42. height: 100%;
  43. }
  44. .uppy-Webcam-permissons p {
  45. line-height: 1.4;
  46. }
  47. .uppy-Webcam-Title {
  48. font-size: 22px;
  49. line-height: 1.35;
  50. font-weight: 300;
  51. margin-bottom: 30px;
  52. padding: 0 15px;
  53. max-width: 500px;
  54. text-align: center;
  55. }