File size: 3,251 Bytes
26c453d
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
:root {
    --ultraLightGreen: #D3F1E9;
    --lightGreen: #BCF3E5;
    --brightGreen: #62E6BF;
    --mediumGreen: #0DA778;
    --deepGreen: #0A7B79;
    --navyBlue: #193053;
}

@font-face {
    font-family: "Poppins";
    src: url("/assets/fonts/Poppins-Regular.ttf");
}

* {
    margin: 0;
    padding: 0;
    font-family: "Poppins";
    scroll-behavior: smooth;
}

span:active {
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

body {
    background-color: var(--ultraLightGreen);
    min-width: 100vw;
    min-height: 100vh;
}

.navbar {
    min-width: 100%;
    position: fixed;
    /* background-color: red; */
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
}

.navbar #nav-left span {
    /* background-color: blue; */
    color: var(--navyBlue);
    text-decoration: none;
    text-align: left;
    font-size: 2rem !important;
    font-weight: 500;
    margin-top: 5px;
}

.navbar #nav-right {
    /* background-color: green; */
    color: var(--navyBlue);
    font-weight: 500;
    text-align: right;
    font-size: 2rem !important;
    margin-right: 1.2rem;
}

.webcam-view img {
    width: 100%;
}

.webcam-view canvas {
    display: none;
    width: 100%;
    height: 25vh;
}

.webcam-view .prediction-overlay {
    position: absolute;
    text-align: center;
    margin-top: -3.45rem;
    width: 100%;
    /* height: 2rem; */
    /* background-color: var(--navyBlue); */
    background-color: rgba(25, 48, 83, .65);
    /* padding: 3px; */
    /* opacity: .8; */
}

.webcam-view .prediction-overlay span {
    font-size: 2rem;
    font-weight: 800;
    color: white;
    /* opacity: 1; */
}

.transcript-wrapper {
    display: flex;
    flex-flow: column;
    align-items: flex-start;
    margin: auto;
    margin-top: 20px;
    height: 15rem;
    width: 85%;
    background: #f5f5f5;
    border: 2px solid var(--navyBlue);
    border-radius: 18px;
}

.transcript-title-bar-wrapper {
    background-color: var(--navyBlue);
    border-radius: 16px 16px 0px 0px;
    /* border: 2px solid var(--navyBlue); */
    width: 100%;
    height: 3rem;
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
    justify-content: flex-start;
    /* display: grid; */
    /* grid-template-columns: auto auto; */
    /* grid-gap: 50px; */
}

.transcript-title-bar-wrapper #transcript-settings-btn {
    /* grid-column: 2; */
    color: white;
    cursor: pointer;
    width: 20px;
    /* padding-top: 12px; */
    padding-left: 15px;
}

.transcript-title-bar-wrapper #transcript-text {
    /* grid-column: 1; */
    /* display: flex; */
    /* flex-direction: row; */
    /* justify-content: space-around; */
    color: white;
    font-weight: 600;
    font-size: 1.15rem;
    padding: 0;
}


/* .navbar {
    position: absolute;
    display: flex;
    font-size: large;
    width: 100%;
    margin: auto;
    justify-content: space-between;
}

.navbar span {
    margin-top: 1rem;
    color: var(--navyBlue);
    font-size: 3rem;
    font-weight: 600;
}

.navbar #nav-left {
    float: left;
    margin-left: 10px;
}

.navbar #nav-right {
    float: left;
    margin-left: 10px;
} */


/* .webcam-view img {
    /* position: absolute; */


/* min-width: 100vw; */


/* }  */