aboutsummaryrefslogtreecommitdiff
path: root/src/client/views/nodes/AudioBox.scss
blob: a6494e540467355076fc2327f391f52d0c98116c (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
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
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
@import "../global/globalCssVariables.scss";


.audiobox-container,
.audiobox-container-interactive {
    width: 100%;
    height: 100%;
    position: inherit;
    display: flex;
    position: relative;
    cursor: default;

    .audiobox-buttons {
        display: flex;
        width: 100%;
        align-items: center;
        height: 100%;

        .audiobox-dictation {
            position: relative;
            width: 30px;
            height: 100%;
            align-items: center;
            display: inherit;
            background: $medium-gray;
            left: 0px;
            color: $dark-gray;

            &:hover {
                color: $black;
                cursor: pointer;
            }
        }
    }

    .audiobox-control,
    .audiobox-control-interactive {
        top: 0;
        max-height: 32px;
        width: 100%;
        display: inline-block;
        pointer-events: none;
    }

    .audiobox-control-interactive {
        pointer-events: all;
    }

    .audiobox-record-interactive,
    .audiobox-record {
        pointer-events: all;
        cursor: pointer;
        width: 100%;
        height: 100%;
        position: relative;
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: center;
        gap: 10px;
        color: white;
        font-weight: bold;
    }

    .audiobox-record {
        pointer-events: none;
    }

    .recording {
        margin-top: auto;
        margin-bottom: auto;
        width: 100%;
        height: 100%;
        position: relative;
        padding-right: 5px;
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: center;
        gap: 7px;
        background-color: $medium-blue;
        padding: 10px;

        .time {
            position: relative;
            height: 100%;
            width: 100%;
            font-size: 16px;
            text-align: center;
            display: flex;
            justify-content: center;
            align-items: center;
            font-weight: bold;
        }

        .buttons {
            cursor: pointer;
            position: relative;
            margin-top: auto;
            margin-bottom: auto;
            width: 25px;
            width: 25px;
            padding: 5px;
            color: $dark-gray;

            &:hover {
                color: $black;
            }
        }
    }

    .audiobox-controls {
        width: 100%;
        height: 100%;
        position: relative;
        display: flex;
        background: $dark-gray;

        .audiobox-dictation {
            position: absolute;
            width: 40px;
            height: 100%;
            align-items: center;
            display: inherit;
            background: $medium-gray;
            left: 0px;
        }

        .audiobox-player {
            margin-top: auto;
            margin-bottom: auto;
            width: 100%;
            position: relative;
            padding-right: 5px;
            display: flex;
            flex-direction: column;
            justify-content: center;

            .audiobox-buttons {
                position: relative;
                margin-top: auto;
                margin-bottom: auto;
                width: 30px;
                height: 30px;
                border-radius: 50%;
                background-color: $dark-gray;
                color: $white;
                display: flex;
                align-items: center;
                justify-content: center;
                left: 5px;

                &:hover {
                    background-color: $black;
                }

                svg {
                    width: 100%;
                    position: absolute;
                    border-width: "thin";
                    border-color: "white";
                }
            }

            .audiobox-dictation {
                position: relative;
                margin-top: auto;
                margin-bottom: auto;
                width: 25px;
                align-items: center;
                display: inherit;
                background: $medium-gray;
            }

            .audiobox-timeline {
                position: absolute;
                width: 100%;
                z-index: 1000;
                overflow: hidden;
                border-right: 5px solid black;
            }

            .audioBox-total-time,
            .audioBox-current-time {
                position: absolute;
                font-size: $small-text;
                top: 100%;
                color: $white;
            }

            .audioBox-current-time {
                left: 42px;
            }

            .audioBox-total-time {
                right: 2px;
            }
        }
    }
}

@media only screen and (max-device-width: 480px) {
    .audiobox-dictation {
        font-size: 5em;
        display: flex;
        width: 100;
        justify-content: center;
        flex-direction: column;
        align-items: center;
    }

    .audiobox-container .audiobox-record,
    .audiobox-container-interactive .audiobox-record {
        font-size: 3em;
    }

    .audiobox-container .audiobox-controls .audiobox-player .audiobox-buttons,
    .audiobox-container .audiobox-controls .audiobox-player .audiobox-dictation,
    .audiobox-container-interactive .audiobox-controls .audiobox-player .audiobox-buttons {
        width: 70px;
    }
}