Spaces:
Runtime error
Runtime error
| @charset "UTF-8"; | |
| body { | |
| font-family: Arial, sans-serif; | |
| padding: 20px; | |
| background-color: #f4f4f4; | |
| height: 100vh; | |
| display: flex; | |
| justify-content: center; | |
| align-items: center; | |
| } | |
| h2 { | |
| margin-bottom: 20px; | |
| text-align: center; | |
| } | |
| a { | |
| text-decoration: none; | |
| color: #000000cc; | |
| } | |
| a:hover { | |
| text-decoration: underline; | |
| } | |
| .container { | |
| max-width: 800px; | |
| background-color: #fff; | |
| padding: 20px 80px; | |
| border-radius: 8px; | |
| box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); | |
| } | |
| #transcription { | |
| white-space: pre-wrap; | |
| padding: 10px; | |
| background-color: #e9e9e9; | |
| border-radius: 4px; | |
| margin-bottom: 20px; | |
| max-height: 400px; | |
| overflow-y: auto; | |
| } | |
| button { | |
| margin: 5px; | |
| padding: 10px 10px; | |
| border: none; | |
| border-radius: 4px; | |
| background-color: #007bff; | |
| color: #fff; | |
| cursor: pointer; | |
| } | |
| .history-button { | |
| margin-top: 20px; | |
| padding: 10px 20px; | |
| background-color: #007bff; | |
| color: white; | |
| border: none; | |
| border-radius: 5px; | |
| cursor: pointer; | |
| } | |
| history-button:hover { | |
| background-color: #0056b3; | |
| } | |
| .flex { | |
| display: flex; | |
| justify-content: center; | |
| } | |
| .new-person { | |
| text-align: center; | |
| } | |
| .controls { | |
| display: flex; | |
| flex-direction: column; | |
| align-items: center; | |
| } | |
| .record-button { | |
| width: 80px; | |
| height: 80px; | |
| background-color: transparent; | |
| border-radius: 50%; | |
| display: flex; | |
| justify-content: center; | |
| align-items: center; | |
| cursor: pointer; | |
| box-shadow: 0 4px 6px rgba(0, 0, 0, 0.4); | |
| transition: all 0.2s ease; | |
| } | |
| .record-icon { | |
| width: 60px; | |
| height: 60px; | |
| background-color: #d32f2f; | |
| border-radius: 50%; | |
| transition: all 0.2s ease; | |
| } | |
| .recording .record-icon { | |
| width: 40px; | |
| height: 40px; | |
| border-radius: 10%; | |
| } | |
| .record-p { | |
| border: 2px dashed #0000008c; | |
| } | |
| .disabled { | |
| background-color: gray; | |
| cursor: not-allowed; | |
| } | |
| .record-icon.recording { | |
| width: 40px; | |
| height: 40px; | |
| border-radius: 0; | |
| } | |
| .new-person-right-container { | |
| padding-left: 20px; | |
| } | |
| .record-container { | |
| display: flex; | |
| justify-content: center; | |
| } | |