aboutsummaryrefslogtreecommitdiff
path: root/src/client/views/webcam/DashWebRTCVideo.scss
diff options
context:
space:
mode:
authorBob Zeleznik <zzzman@gmail.com>2020-02-09 17:02:47 -0500
committerBob Zeleznik <zzzman@gmail.com>2020-02-09 17:02:47 -0500
commit5274e784fbd8107abf0f20e16afcf4e7032e9117 (patch)
tree3e727c69c98d2f1c7e64db5d890e1203d02cd940 /src/client/views/webcam/DashWebRTCVideo.scss
parent96b2f5f5334fb475180a095905e19e45a0414233 (diff)
parent4bb5910e0a853d225c3304aa7a958c2f9e9108c7 (diff)
Merge branch 'master' of https://github.com/browngraphicslab/Dash-Web
Diffstat (limited to 'src/client/views/webcam/DashWebRTCVideo.scss')
-rw-r--r--src/client/views/webcam/DashWebRTCVideo.scss46
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