pages/timer/style.css
2025-04-14 09:22:58 -04:00

63 lines
835 B
CSS

body {
font-family: Arial, sans-serif;
text-align: center;
padding: 50px;
background-color: #000;
color: #fff;
}
input, button {
padding: 10px;
margin: 10px;
font-size: 1rem;
border-radius: 5px;
border: none;
}
input[type="text"] {
background-color: #222;
color: #fff;
}
button {
background-color: #444;
color: #fff;
cursor: pointer;
transition: background-color 0.3s;
}
button:hover {
background-color: #666;
}
#status {
margin-top: 20px;
font-weight: bold;
}
#customSoundContainer {
margin-top: 30px;
}
#soundFileInput {
display: none;
}
label {
cursor: pointer;
display: inline-block;
padding: 10px 20px;
background-color: #444;
color: #fff;
border-radius: 5px;
}
label:hover {
background-color: #666;
}
small {
display: block;
margin-top: 5px;
color: #aaa;
}