Create style.css

This commit is contained in:
Voxel 2025-04-14 09:22:58 -04:00 committed by GitHub
parent 082137d76c
commit 58ffe21b09
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

63
timer/style.css Normal file
View file

@ -0,0 +1,63 @@
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;
}