mirror of
https://github.com/transloadit/uppy.git
synced 2026-07-23 18:29:09 +00:00
132 lines
2.2 KiB
SCSS
132 lines
2.2 KiB
SCSS
@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;
|
|
}
|