aboutsummaryrefslogtreecommitdiff
path: root/src/client/views/webcam/DashWebRTCVideo.scss
blob: 249aee9d69b2135cd7a9feb2b41c3971cf24a706 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
@import "../global/globalCssVariables";

.webcam-cont {
    background: whitesmoke;
    color: grey;
    border-radius: 15px;
    box-shadow: #9c9396 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%;
        margin-top: 20px;
    }

    .videoContainer {
        position: relative;
        width: calc(100% - 20px);
        height: 100%;
        /* border: 10px solid red; */
        margin-left: 10px;
    }

    .buttonContainer {
        display: flex;
        width: calc(100% - 20px);
        height: 50px;
        justify-content: center;
        text-align: center;
        /* border: 1px solid black; */
        margin-left: 10px;
        margin-top: 0;
        margin-bottom: 15px;
    }

    #roomName {
        outline: none;
        border-radius: inherit;
        border: 1px solid #BBBBBBBB;
        margin: 10px;
        padding: 10px;
    }

    .side {
        width: 25%;
        height: 20%;
        position: absolute;
        /* top: 65%; */
        z-index: 2;
        right: 0px;
        bottom: 18px;
    }

    .main {
        position: absolute;
        width: 100%;
        height: 100%;
        /* top: 20%; */
        align-self: center;
    }

    .videoButtons {
        border-radius: 50%;
        height: 30px;
        width: 30px;
        display: flex;
        justify-content: center;
        align-items: center;
        justify-self: center;
        align-self: center;
        margin: 5px;
        border: 1px solid black;
    }

}