Spaces:
Running
Running
File size: 2,123 Bytes
7c7c907 |
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 |
@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;
}
|