add audio transcription module

This commit is contained in:
makaveli10
2023-05-26 03:10:55 +08:00
parent 9a43ba607a
commit 9c2a4259d0
25 changed files with 1540 additions and 0 deletions
+71
View File
@@ -0,0 +1,71 @@
.header {
display: flex;
align-items: center;
padding-bottom: 15px;
padding-left: 20px;
border-bottom: 2px solid darkred;
}
.header-title {
padding: 0 5px;
}
.progress {
margin: 50px 20px 10px 20px;
font-size: 16px;
display: flex;
}
.notes {
margin: 0 20px;
}
#progressContainer {
margin-left: 5px;
width: 500px;
height: 18px;
background-color: lavenderblush;
}
#encodeProgress {
height: 100%;
width: 0%;
background-color: darkred;
}
#saveCapture {
display: none;
}
.buttonContainer {
display: flex;
}
#status {
margin-top: 30px;
margin-left: 20px;
font-size: 14px;
}
.button {
padding: 10px;
border: 2px solid darkred;
font-size: 16px;
background-color: lavenderblush;
font-weight: bold;
margin: 10px 20px;
cursor: pointer;
border-radius: 5px;
}
.button:hover {
color: red;
background-color: darkred;
}
#review {
color: blue;
display: inline;
text-decoration: underline;
cursor: pointer;
}