semabox-mms / static /css /design.css
Tri4's picture
Update static/css/design.css
8f1e0dc verified
raw
history blame
1.14 kB
body {
background-color: #121212; /* Dark background */
overflow: hidden;
color: #e0e0e0; /* Light text color for contrast */
font-family: Arial, sans-serif;
}
.mic-container {
height: 100vh;
width: 100vw;
display: flex;
align-items: center;
justify-content: center;
}
.circle {
width: 80px;
height: 80px;
border-radius: 50%;
background: #4b83ad;
display: flex;
justify-content: center;
align-items: center;
z-index: 1;
transition: 0.5s;
box-shadow: 0 6px 10px 0 rgba(0, 0, 0, 0.14), 0 1px 18px 0 rgba(0, 0, 0, 0.12), 0 3px 5px -1px rgba(0, 0, 0, 0.2);
position: relative;
}
.circle i {
color: #b2b1b1;
font-size: 23px;
transition: 0.9s;
}
.circle.active {
background: #ff0000; /* Red for recording */
}
.circle.active i {
color: #ffffff;
}
.output-container {
position: fixed;
bottom: 20px;
left: 50%;
transform: translateX(-50%);
background: rgba(255, 255, 255, 0.8);
border-radius: 10px;
padding: 10px 20px;
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
color: #000; /* Dark text for visibility */
}