From 58ffe21b09933df85fd17a80bcad34b6e2231ae8 Mon Sep 17 00:00:00 2001 From: Voxel Date: Mon, 14 Apr 2025 09:22:58 -0400 Subject: [PATCH] Create style.css --- timer/style.css | 63 +++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 63 insertions(+) create mode 100644 timer/style.css diff --git a/timer/style.css b/timer/style.css new file mode 100644 index 0000000..c555a40 --- /dev/null +++ b/timer/style.css @@ -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; +}