123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132 |
- @import '@uppy/core/src/_utils.scss';
- @import '@uppy/core/src/_variables.scss';
- .uppy-Webcam-container {
- width: 100%;
- height: 100%;
- display: flex;
- justify-content: center;
- align-items: center;
- flex-direction: column;
- }
- .uppy-Webcam-videoContainer {
- width: 100%;
- flex: 1;
- flex-grow: 1;
- overflow: hidden;
- background-color: $gray-800;
- text-align: center;
- position: relative;
- }
- .uppy-size--md .uppy-Webcam-videoContainer {
- // height: initial;
- }
- .uppy-Webcam-video {
- // width: 100%;
- // height: 100%;
- max-width: 100%;
- max-height: 100%;
- position: absolute;
- top: 0;
- right: 0;
- bottom: 0;
- left: 0;
- margin: auto;
- }
- .uppy-Webcam-video--mirrored {
- transform: scaleX(-1);
- }
- .uppy-Webcam-buttonContainer {
- width: 100%;
- height: 75px;
- border-top: 1px solid $gray-200;
- display: flex;
- align-items: center;
- justify-content: center;
- padding: 0 20px;
- }
- .uppy-Webcam-button {
- width: 45px;
- height: 45px;
- border-radius: 50%;
- background-color: $red;
- color: $white;
- cursor: pointer;
- transition: all 0.3s;
- }
- .uppy-Webcam-button svg {
- width: 30px;
- height: 30px;
- max-width: 100%;
- max-height: 100%;
- display: inline-block;
- vertical-align: text-top;
- overflow: hidden;
- fill: currentColor;
- }
- .uppy-size--md .uppy-Webcam-button {
- width: 60px;
- height: 60px;
- }
- .uppy-Webcam-button:hover {
- background-color: darken($red, 5%);
- }
- .uppy-Webcam-button:focus {
- outline: none;
- box-shadow: 0 0 0 0.2rem rgba($blue, 0.5);
- }
- .uppy-Webcam-button--picture {
- margin-right: 12px;
- }
- .uppy-Webcam-permissons {
- padding: 15px;
- display: flex;
- align-items: center;
- justify-content: center;
- flex-flow: column wrap;
- height: 100%;
- flex: 1;
- }
- .uppy-Webcam-permissons p {
- max-width: 450px;
- line-height: 1.3;
- }
- .uppy-Webcam-title {
- font-size: 22px;
- line-height: 1.35;
- font-weight: 400;
- margin: 0;
- margin-bottom: 5px;
- padding: 0 15px;
- max-width: 500px;
- text-align: center;
- color: $gray-800;
- }
- .uppy-Webcam-permissons p {
- text-align: center;
- line-height: 1.45;
- color: $gray-500;
- margin: 0;
- }
- .uppy-Webcam-permissonsIcon svg {
- width: 100px;
- height: 75px;
- color: $gray-400;
- margin-bottom: 30px;
- }
|