diff options
| author | Sam Wilkins <35748010+samwilkins333@users.noreply.github.com> | 2020-02-09 16:46:16 -0500 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2020-02-09 16:46:16 -0500 |
| commit | 4bb5910e0a853d225c3304aa7a958c2f9e9108c7 (patch) | |
| tree | a5980eb5442439394624fee9d9aa368dd3ff13ee /src/client/views/webcam/DashWebRTCVideo.scss | |
| parent | b5f34c5e702c3796e0f346ee2887a92332db9778 (diff) | |
| parent | 277107f6d4b85036cd6c2ba5934da9b542788462 (diff) | |
Merge pull request #336 from browngraphicslab/webcam_mohammad
Webcam mohammad
Diffstat (limited to 'src/client/views/webcam/DashWebRTCVideo.scss')
| -rw-r--r-- | src/client/views/webcam/DashWebRTCVideo.scss | 46 |
1 files changed, 46 insertions, 0 deletions
diff --git a/src/client/views/webcam/DashWebRTCVideo.scss b/src/client/views/webcam/DashWebRTCVideo.scss new file mode 100644 index 000000000..2f35eeca2 --- /dev/null +++ b/src/client/views/webcam/DashWebRTCVideo.scss @@ -0,0 +1,46 @@ +@import "../globalCssVariables"; + +.webcam-cont { + background: whitesmoke; + color: grey; + border-radius: 15px; + box-shadow: $intermediate-color 0.2vw 0.2vw 0.4vw; + border: solid #BBBBBBBB 5px; + pointer-events: all; + display: flex; + flex-direction: column; + overflow: hidden; + + .webcam-header { + height: 50px; + text-align: center; + text-transform: uppercase; + letter-spacing: 2px; + font-size: 16px; + width: 100%; + } + + #roomName { + outline: none; + border-radius: inherit; + border: 1px solid #BBBBBBBB; + } + + .side { + width: 25%; + height: 20%; + position: absolute; + top: 65%; + z-index: 2; + right: 5%; + } + + .main { + position: absolute; + width: 95%; + height: 75%; + top: 20%; + align-self: center; + } + +}
\ No newline at end of file |
