changed color

This commit is contained in:
BinaryDigitDev 2024-10-14 19:35:19 -04:00
parent 840ec69040
commit 8c1766dcfc
2 changed files with 22 additions and 24 deletions

View File

@ -8,36 +8,34 @@
</head> </head>
<body> <body>
<div id="container"> <div id="container">
<div class="nes-container is-dark">
<div class="nes-container is-dark"> <h3 class="title">Game Timer</h3>
<h3 class="title">Game Timer</h3> <p>
<p> <h3 id="timer">
<h3 id="timer"> <label id="timerText"></label>
<label id="timerText"></label> </h3>
</h3> </p>
</p>
</div>
<div id="controls">
<button class="nes-btn is-primary" onclick="countdown(600);">10 Min</button>
<button class="nes-btn is-warning" onclick="countdown(900);">15 Min</button>
<br>
<button class="nes-btn is-error" onclick="stopTimer();">STOP</button>
</div>
<audio id="alarm" src="asset/SEGA.mp3" preload="auto"></audio>
<script src="pomodoro.js"></script>
</div> </div>
<div id="controls">
<button class="nes-btn is-primary" onclick="countdown(600);">10 Min</button>
<button class="nes-btn is-warning" onclick="countdown(900);">15 Min</button>
<br>
<button class="nes-btn is-error" onclick="stopTimer();">STOP</button>
</div>
<audio id="alarm" src="asset/SEGA.mp3" preload="auto"></audio>
<script src="pomodoro.js"></script>
</div>
<footer> <footer>
<small> <small>
<a href="https://twitch.tv/KilobyteKeith">Twitch</a> | <a href="https://twitch.tv/KilobyteKeith">Twitch</a> |
<a href="https://github.com/BinaryDigitDev/gametimer">GitHub</a> <a href="https://github.com/BinaryDigitDev/gametimer">GitHub</a>
<small> <small>
</footer> </footer>
<br>
</body> </body>
</html> </html>

View File

@ -1,7 +1,7 @@
@import url('https://fonts.googleapis.com/css?family=Press+Start+2P'); @import url('https://fonts.googleapis.com/css?family=Press+Start+2P');
html { html {
background-color: #adb5bd; background-color: #868e96;
font-family: "Press Start 2P"; font-family: "Press Start 2P";
} }
#timer label { #timer label {