VoiceFocus / assets /styling.css
mariesig's picture
vad (#3)
32dcdfe
Raw
History Blame Contribute Delete
1.34 kB
.status-panel {
padding: 16px;
border-radius: 16px;
border: 1px solid #27272a;
background: #111827;
}
.title, .tab-description {
margin-left: 2px;
margin-top: 2px;
margin-bottom: 0px;
}
.transcript-row {
gap: 12px;
}
.transcript-row--large textarea {
min-height: 260px;
}
.status-card {
height: 50px;
border: 1px solid #3f3f46;
border-radius: 14px;
background: #18181b;
padding: 5px 5px;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
box-sizing: border-box;
}
.status-card__label {
text-align: center;
margin-bottom: 0px;
color: #e4e4e7;
}
.status-card__subtext {
margin-top: 0px;
font-size: 0.85rem;
color: #a1a1aa;
text-align: center;
}
.led-dot {
width: 30px;
height: 30px;
border-radius: 9999px;
border: 1px solid #71717a;
margin: 0 auto;
}
.led-dot--black {
background: #1c1c1c;
box-shadow: none;
}
.led-dot--red {
background: #ef4444;
box-shadow: 0 0 14px rgba(239, 68, 68, 0.85);
}
.led-dot--green {
background: #22c55e;
box-shadow: 0 0 14px rgba(34, 197, 94, 0.85);
}
.led-dot--yellow {
background: #facc15;
box-shadow: 0 0 14px rgba(250, 204, 21, 0.85);
}
.led-dot--off {
background: #3f3f46;
box-shadow: none;
}